public void onWarning(String msg, String sourceFile, int line, int position) {
if ( !this.ignoreWarnings ) {
if ( warnings == null ) {
warnings = new ArrayList<CompilerMessage>();
}
warnings.add(new CompilerMessage(sourceFile, line, position, msg));
}
}