16 lines
556 B
Java
16 lines
556 B
Java
package com.tridium.easdemo.xml;
|
|
|
|
public interface TDocumentHandler {
|
|
void characters(char[] cArr, int i, int i2, TLocation tLocation) throws Exception;
|
|
|
|
void endDocument(TLocation tLocation) throws Exception;
|
|
|
|
void endElement(String str, TLocation tLocation) throws Exception;
|
|
|
|
void processingInstruction(String str, String str2, TLocation tLocation) throws Exception;
|
|
|
|
void startDocument(TLocation tLocation) throws Exception;
|
|
|
|
void startElement(String str, TAttributeList tAttributeList, TLocation tLocation) throws Exception;
|
|
}
|