CasViewerEclipsePlugin/uimaj-ep-casviewer-core/src/main/java/org/apache/uima/casviewer/ui/internal/style/TypeSystemStyle.java [583:600]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                continue;
            }
            
            // Collect type or pattern, label, and color text style
            NodeList childrenList = node.getChildNodes();
            String type = ""; //$NON-NLS-1$ 
            String label = ""; //$NON-NLS-1$ 
            String colorText = ""; //$NON-NLS-1$ 
            for (int j = 0; j < childrenList.getLength(); ++j) {
                final Node child = childrenList.item(j);
                final String childName = child.getNodeName();

                if (childName.equals("pattern")) { //$NON-NLS-1$ 
                    type = getTextValue(child);
                } else if (childName.equals("label")) { //$NON-NLS-1$ 
                    label = getTextValue(child);
                } else if (childName.equals("style")) { //$NON-NLS-1$ 
                    colorText = getTextValue(child);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



uimaj-ep-cev/src/main/java/org/apache/uima/cev/data/StyleMapReader.java [148:165]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        continue;
      }

      // Collect type or pattern, label, and color text style
      NodeList childrenList = node.getChildNodes();
      String type = ""; //$NON-NLS-1$ 
      String label = ""; //$NON-NLS-1$ 
      String colorText = ""; //$NON-NLS-1$ 
      for (int j = 0; j < childrenList.getLength(); ++j) {
        final Node child = childrenList.item(j);
        final String childName = child.getNodeName();

        if (childName.equals("pattern")) { //$NON-NLS-1$ 
          type = getTextValue(child);
        } else if (childName.equals("label")) { //$NON-NLS-1$ 
          label = getTextValue(child);
        } else if (childName.equals("style")) { //$NON-NLS-1$ 
          colorText = getTextValue(child);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



