b2fc6617500dae85682c07f4558559b7996f495c
[jalviewjs.git] / site / j2s / org / xml / sax / HandlerBase.js
1 Clazz.declarePackage ("org.xml.sax");
2 Clazz.load (["org.xml.sax.DTDHandler", "$.DocumentHandler", "$.EntityResolver", "$.ErrorHandler"], "org.xml.sax.HandlerBase", null, function () {
3 c$ = Clazz.declareType (org.xml.sax, "HandlerBase", null, [org.xml.sax.EntityResolver, org.xml.sax.DTDHandler, org.xml.sax.DocumentHandler, org.xml.sax.ErrorHandler]);
4 Clazz.overrideMethod (c$, "resolveEntity", 
5 function (publicId, systemId) {
6 return null;
7 }, "~S,~S");
8 Clazz.overrideMethod (c$, "notationDecl", 
9 function (name, publicId, systemId) {
10 }, "~S,~S,~S");
11 Clazz.overrideMethod (c$, "unparsedEntityDecl", 
12 function (name, publicId, systemId, notationName) {
13 }, "~S,~S,~S,~S");
14 Clazz.overrideMethod (c$, "setDocumentLocator", 
15 function (locator) {
16 }, "org.xml.sax.Locator");
17 Clazz.overrideMethod (c$, "startDocument", 
18 function () {
19 });
20 Clazz.overrideMethod (c$, "endDocument", 
21 function () {
22 });
23 Clazz.overrideMethod (c$, "startElement", 
24 function (name, attributes) {
25 }, "~S,org.xml.sax.AttributeList");
26 Clazz.overrideMethod (c$, "endElement", 
27 function (name) {
28 }, "~S");
29 Clazz.overrideMethod (c$, "characters", 
30 function (ch, start, length) {
31 }, "~A,~N,~N");
32 Clazz.overrideMethod (c$, "ignorableWhitespace", 
33 function (ch, start, length) {
34 }, "~A,~N,~N");
35 Clazz.overrideMethod (c$, "processingInstruction", 
36 function (target, data) {
37 }, "~S,~S");
38 Clazz.overrideMethod (c$, "warning", 
39 function (e) {
40 }, "org.xml.sax.SAXParseException");
41 Clazz.overrideMethod (c$, "error", 
42 function (e) {
43 }, "org.xml.sax.SAXParseException");
44 Clazz.overrideMethod (c$, "fatalError", 
45 function (e) {
46 throw e;
47 }, "org.xml.sax.SAXParseException");
48 });