link start!
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
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;
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package com.tridium.easdemo.xml;
|
||||
|
||||
public interface TEntityHandler {
|
||||
String resolveEntity(String str, String str2, String str3, TLocation tLocation) throws Exception;
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package com.tridium.easdemo.xml;
|
||||
|
||||
public interface TErrorHandler {
|
||||
void error(String str, TLocation tLocation) throws Exception;
|
||||
|
||||
void fatalError(String str, TLocation tLocation) throws Exception;
|
||||
|
||||
void warning(String str, TLocation tLocation) throws Exception;
|
||||
}
|
||||
Reference in New Issue
Block a user