You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by pk...@apache.org on 2015/06/05 14:18:41 UTC

svn commit: r1683735 - /uima/ruta/trunk/ruta-ep-caseditor/src/main/java/org/apache/uima/ruta/caseditor/view/tree/TypeOrderedRootTreeNode.java

Author: pkluegl
Date: Fri Jun  5 12:18:41 2015
New Revision: 1683735

URL: http://svn.apache.org/r1683735
Log:
no jira - exclude RutaBasic by default in tree views

Modified:
    uima/ruta/trunk/ruta-ep-caseditor/src/main/java/org/apache/uima/ruta/caseditor/view/tree/TypeOrderedRootTreeNode.java

Modified: uima/ruta/trunk/ruta-ep-caseditor/src/main/java/org/apache/uima/ruta/caseditor/view/tree/TypeOrderedRootTreeNode.java
URL: http://svn.apache.org/viewvc/uima/ruta/trunk/ruta-ep-caseditor/src/main/java/org/apache/uima/ruta/caseditor/view/tree/TypeOrderedRootTreeNode.java?rev=1683735&r1=1683734&r2=1683735&view=diff
==============================================================================
--- uima/ruta/trunk/ruta-ep-caseditor/src/main/java/org/apache/uima/ruta/caseditor/view/tree/TypeOrderedRootTreeNode.java (original)
+++ uima/ruta/trunk/ruta-ep-caseditor/src/main/java/org/apache/uima/ruta/caseditor/view/tree/TypeOrderedRootTreeNode.java Fri Jun  5 12:18:41 2015
@@ -64,7 +64,7 @@ public class TypeOrderedRootTreeNode ext
   public void insertFS(FeatureStructure fs, boolean withParents) {
     // TODO hotfix for explanation types...
     Type type = fs.getType();
-    if (type.getShortName().equals("DebugBlockApply")
+    if (type.getShortName().equals("RutaBasic") || type.getShortName().equals("DebugBlockApply")
             || type.getShortName().equals("DebugMatchedRuleMatch")
             || type.getShortName().equals("DebugFailedRuleMatch")
             || type.getShortName().equals("DebugScriptApply")