1 19 package org.netbeans.tax.io; 20 21 28 public interface TreeStreamBuilderErrorHandler { 29 30 public static final int ERROR_WARNING = 0; 32 public static final int ERROR_ERROR = 1; 33 public static final int ERROR_FATAL_ERROR = 2; 34 35 public static final String [] ERROR_NAME = new String [] { 36 "Warning", "Error", "Fatal error" }; 40 41 public void message (int type, org.xml.sax.SAXParseException e); 42 43 } 44 | Popular Tags |