ruta-ep-addons/src/main/java/org/apache/uima/ruta/explain/failed/FailedTreeLabelProvider.java [40:50]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public Image getImage(Object element) {
    if (element instanceof RuleMatchNode) {
      RuleMatchNode ruleMatchNode = (RuleMatchNode) element;
      FeatureStructure fs = ruleMatchNode.getFeatureStructure();
      if (fs != null) {
        String name = fs.getType().getName();
        return owner.getImage(name);
      }
    }
    return null;
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



ruta-ep-addons/src/main/java/org/apache/uima/ruta/explain/matched/MatchedTreeLabelProvider.java [40:50]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public Image getImage(Object element) {
    if (element instanceof RuleMatchNode) {
      RuleMatchNode ruleMatchNode = (RuleMatchNode) element;
      FeatureStructure fs = ruleMatchNode.getFeatureStructure();
      if (fs != null) {
        String name = fs.getType().getName();
        return owner.getImage(name);
      }
    }
    return null;
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



