Class MsgPrintTools

    • Method Detail

      • fileName

        🡅  🡇     🗕  🗗  🗖
        public static java.lang.String fileName​(java.lang.String fName)
        Code:
        Exact Method Body:
         return "    [" + BYELLOW + fName + RESET + "]\n";
        
      • annotationAsStr

        🡅  🡇     🗕  🗗  🗖
        public static java.lang.String annotationAsStr​
                    (java.lang.String annotationAsStr)
        
        Code:
        Exact Method Body:
         return "    [" + BCYAN + annotationAsStr + RESET + "]\n";
        
      • fileOrDirNameShort

        🡅  🡇     🗕  🗗  🗖
        public static java.lang.String fileOrDirNameShort​
                    (java.lang.String fileOrDirName)
        
        Code:
        Exact Method Body:
         return "'" + BYELLOW + fileOrDirName + RESET + "'";
        
      • embedTagID

        🡅  🡇     🗕  🗗  🗖
        public static java.lang.String embedTagID​(java.lang.String eTagID)
        Code:
        Exact Method Body:
         return "For <EMBED>-Tag File-ID [" + BCYAN + eTagID + RESET + "]:\n";
        
      • embedTag

        🡅  🡇     🗕  🗗  🗖
        public static java.lang.String embedTag​(TagNode tn)
        Code:
        Exact Method Body:
         return "<EMBED>-Tag Found:\n" +
             "    [" + BCYAN + tn.str + RESET + "]\n";
        
      • className

        🡅  🡇     🗕  🗗  🗖
        public static java.lang.String className​(java.lang.Class<?> clazz)
        Code:
        Exact Method Body:
         return "    [" + BCYAN + clazz.getCanonicalName() + RESET + "]\n";
        
      • annotationProcessingError

        🡅  🡇     🗕  🗗  🗖
        public static java.lang.String annotationProcessingError()
        Code:
        Exact Method Body:
         return
             '\n' +
             "This is a class of error which should be caught by the Standard Java 'javac' "  +
             "Compiler.  Has Annotation Processing been disabled by your build?";
        
      • fieldName

        🡅  🡇     🗕  🗗  🗖
        public static java.lang.String fieldName​(java.lang.String fieldName)
        Code:
        Exact Method Body:
         return "[" + BGREEN + fieldName + RESET + ']';
        
      • methodName

        🡅  🡇     🗕  🗗  🗖
        public static java.lang.String methodName​(java.lang.String methodName)
        Code:
        Exact Method Body:
         return "[" + BGREEN + methodName + RESET + ']';
        
      • cietSimpleName

        🡅  🡇     🗕  🗗  🗖
        public static java.lang.String cietSimpleName​
                    (java.lang.String cietSimpleName)
        
        Code:
        Exact Method Body:
         return "[" + BGREEN + cietSimpleName + RESET + ']';
        
      • method

        🡅     🗕  🗗  🗖
        public static java.lang.String method​(java.lang.reflect.Method m)
        Code:
        Exact Method Body:
         return
             "    " +
             BCYAN + StrPrint.wrapToIndentationPlus(m.toString(), 66, 66, 4) + RESET +
             '\n';