Exemple #1
0
 /** Generates an error in the Eclipse error log. Note that most people never look at it! */
 public static void error(CompilationUnitDeclaration cud, String message, Throwable error) {
   error(cud, message, DEFAULT_BUNDLE, error);
 }
Exemple #2
0
 /** Generates an error in the Eclipse error log. Note that most people never look at it! */
 public static void error(CompilationUnitDeclaration cud, String message, String bundleName) {
   error(cud, message, bundleName, null);
 }
Exemple #3
0
 /** Generates an error in the Eclipse error log. Note that most people never look at it! */
 public static void error(CompilationUnitDeclaration cud, String message) {
   error(cud, message, DEFAULT_BUNDLE, null);
 }