uimaj-ep-cev/src/main/java/org/apache/uima/cev/data/StyleMapReader.java [220:229]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  private static String getTextValue(final Node node) {
    final Node first = node.getFirstChild();

    if (first != null) {
      return ((Text) first).getNodeValue().trim();

    } else {
      return null;
    }
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



CasViewerEclipsePlugin/uimaj-ep-casviewer-core/src/main/java/org/apache/uima/casviewer/ui/internal/style/TypeSystemStyle.java [678:687]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    static private String getTextValue(final Node node) {
        final Node first = node.getFirstChild();

        if (first != null) {
            return ((Text) first).getNodeValue().trim();

        } else { 
            return null;
        } 
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



