243b18be85a6fd4f9ed192ba4db69c3e4d68781f
[jalviewjs.git] / site / j2s / org / xml / sax / helpers / DefaultHandler.js
1 Clazz.declarePackage ("org.xml.sax.helpers");
2 Clazz.load (["org.xml.sax.ContentHandler", "$.DTDHandler", "$.EntityResolver", "$.ErrorHandler"], "org.xml.sax.helpers.DefaultHandler", null, function () {
3 c$ = Clazz.declareType (org.xml.sax.helpers, "DefaultHandler", null, [org.xml.sax.EntityResolver, org.xml.sax.DTDHandler, org.xml.sax.ContentHandler, 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$, "startPrefixMapping", 
24 function (prefix, uri) {
25 }, "~S,~S");
26 Clazz.overrideMethod (c$, "endPrefixMapping", 
27 function (prefix) {
28 }, "~S");
29 Clazz.overrideMethod (c$, "startElement", 
30 function (uri, localName, qName, attributes) {
31 }, "~S,~S,~S,org.xml.sax.Attributes");
32 Clazz.overrideMethod (c$, "endElement", 
33 function (uri, localName, qName) {
34 }, "~S,~S,~S");
35 Clazz.overrideMethod (c$, "characters", 
36 function (ch, start, length) {
37 }, "~A,~N,~N");
38 Clazz.overrideMethod (c$, "ignorableWhitespace", 
39 function (ch, start, length) {
40 }, "~A,~N,~N");
41 Clazz.overrideMethod (c$, "processingInstruction", 
42 function (target, data) {
43 }, "~S,~S");
44 Clazz.overrideMethod (c$, "skippedEntity", 
45 function (name) {
46 }, "~S");
47 Clazz.overrideMethod (c$, "warning", 
48 function (e) {
49 }, "org.xml.sax.SAXParseException");
50 Clazz.overrideMethod (c$, "error", 
51 function (e) {
52 }, "org.xml.sax.SAXParseException");
53 Clazz.overrideMethod (c$, "fatalError", 
54 function (e) {
55 throw e;
56 }, "org.xml.sax.SAXParseException");
57 });