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?";