CasViewerEclipsePlugin/uimaj-ep-casviewer-core/src/main/java/org/apache/uima/casviewer/ui/internal/style/ColoredTypeTreeLabelProvider.java [290:300]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public Color getForeground(Object element, int columnIndex) {
        if ( element instanceof TypeNode ) {
            if (columnIndex == 0) {
                Object obj = ((TypeNode) element).getObject();
                if ( obj instanceof TypeStyle ) {
                    return ((TypeStyle) obj).fgColor;
                }            
            }
        }
        return null;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



CasViewerEclipsePlugin/uimaj-ep-casviewer-core/src/main/java/org/apache/uima/casviewer/ui/internal/style/DefaultColorTreeLabelProvider.java [316:326]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public Color getForeground(Object element, int columnIndex) {
        if ( element instanceof TypeNode ) {
            if (columnIndex == 0) {
                Object obj = ((TypeNode) element).getObject();
                if ( obj instanceof TypeStyle ) {
                    return ((TypeStyle) obj).fgColor;
                }            
            }
        }
        return null;
    }		
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



