niagara-ax/decompiled/com/tridium/easdemo/xml/TDocumentHandler.java
2026-03-17 13:31:18 -07:00

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;
}