Ejemplo n.º 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);
 }
Ejemplo n.º 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);
 }
Ejemplo n.º 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);
 }