1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.kew.xml;
17
18 import org.xml.sax.Attributes;
19 import org.xml.sax.ContentHandler;
20 import org.xml.sax.Locator;
21 import org.xml.sax.SAXException;
22
23
24
25
26
27
28
29 public class TestGroupNamespaceURIHandler implements ContentHandler{
30
31 private ContentHandler parent;
32
33 public TestGroupNamespaceURIHandler(ContentHandler parent) {
34 this.parent = parent;
35 }
36
37
38
39
40
41
42 public void startElement(String uri, String localName, String qName,
43 Attributes atts) throws SAXException {
44 parent.startElement(uri, localName, qName, atts);
45 }
46
47
48
49
50
51
52 public void endElement(String uri, String localName, String qName)
53 throws SAXException {
54 parent.endElement(uri, localName, qName);
55 }
56
57
58
59
60
61
62 public void characters(char[] ch, int start, int length) throws SAXException {
63 parent.characters(ch, start, length);
64 }
65
66
67
68
69
70
71 public void endDocument() throws SAXException {
72 parent.endDocument();
73 }
74
75
76
77
78
79
80 public void endPrefixMapping(String prefix) throws SAXException {
81 parent.endPrefixMapping(prefix);
82 }
83
84
85
86
87
88
89 public void ignorableWhitespace(char[] ch, int start, int length)
90 throws SAXException {
91 parent.ignorableWhitespace(ch, start, length);
92 }
93
94
95
96
97
98
99 public void processingInstruction(String target, String data)
100 throws SAXException {
101 parent.processingInstruction(target, data);
102 }
103
104
105
106
107
108
109 public void setDocumentLocator(Locator locator) {
110 parent.setDocumentLocator(locator);
111 }
112
113
114
115
116
117
118 public void skippedEntity(String name) throws SAXException {
119 parent.skippedEntity(name);
120 }
121
122
123
124
125
126
127 public void startDocument() throws SAXException {
128 parent.startDocument();
129 }
130
131
132
133
134
135
136 public void startPrefixMapping(String prefix, String uri)
137 throws SAXException {
138 parent.startPrefixMapping(prefix, uri);
139 }
140 }