1 19 20 package org.netbeans.api.xml.cookies; 21 22 import org.xml.sax.*; 24 25 33 public abstract class XMLProcessorDetail { 34 35 public abstract int getColumnNumber(); 36 37 public abstract int getLineNumber(); 38 39 public abstract String getPublicId(); 40 41 public abstract String getSystemId(); 42 43 public abstract Exception getException(); 44 45 } 46 | Popular Tags |