CasViewerEclipsePlugin/uimaj-ep-casviewer-core/src/main/java/org/apache/uima/tools/internal/util/UimaToolsUtil.java [8:17]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    static public String getMyShortName (String fullName) {
        if (fullName == null) return null;
        
        int index = fullName.lastIndexOf('.');
        if ( index < 0 ) {
            return fullName;
        } else {
            return fullName.substring(index+1);
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



CasViewerEclipsePlugin/uimaj-ep-casviewer-core/src/main/java/org/apache/uima/casviewer/ui/internal/style/TypeSystemStyle.java [808:817]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public static String getShortName (String fullName) {
        if (fullName == null) return null;
        
        int index = fullName.lastIndexOf('.');
        if ( index < 0 ) {
            return fullName;
        } else {
            return fullName.substring(index+1);
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



CasViewerEclipsePlugin/uimaj-ep-casviewer-core/src/main/java/org/apache/uima/casviewer/core/internal/style/BaseTypeStyle.java [24:33]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public static String getShortName (String fullName) {
      if (fullName == null) return null;
      
      int index = fullName.lastIndexOf('.');
      if ( index < 0 ) {
          return fullName;
      } else {
          return fullName.substring(index+1);
      }
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



CasViewerEclipsePlugin/uimaj-ep-casviewer-core/src/main/java/org/apache/uima/casviewer/core/internal/TypeSystemUtils2.java [33:42]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public static String getMyShortName (String fullName) {
        if (fullName == null) return null;
        
        int index = fullName.lastIndexOf('.');
        if ( index < 0 ) {
            return fullName;
        } else {
            return fullName.substring(index+1);
        }
    } // getMyShortName
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



