コード例 #1
0
ファイル: Eclipse.java プロジェクト: barneypitt/lombok
 /** 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);
 }
コード例 #2
0
ファイル: Eclipse.java プロジェクト: barneypitt/lombok
 /** 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);
 }
コード例 #3
0
ファイル: Eclipse.java プロジェクト: barneypitt/lombok
 /** 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);
 }