link start!

This commit is contained in:
cherubin
2026-03-17 13:31:18 -07:00
commit 08abe87cfb
5910 changed files with 386288 additions and 0 deletions
@@ -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;
}