/** * 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)); }
/** * Print warning message, increment warning count. Part of DocErrorReporter. * * @param msg message to print */ public void printWarning(String msg) { printWarning(null, msg); }