Ejemplo n.º 1
0
 /**
  * Print warning message, increment warning count.
  *
  * @param key selects message from resource
  */
 public void warning(SourcePosition pos, String key, Object... args) {
   printWarning(pos, getText(key, args));
 }
Ejemplo n.º 2
0
 /**
  * Print warning message, increment warning count. Part of DocErrorReporter.
  *
  * @param msg message to print
  */
 public void printWarning(String msg) {
   printWarning(null, msg);
 }