01: package com.jclark.xml.parse.base;
02:
03: import com.jclark.xml.parse.*;
04:
05: /**
06: * A default implementation of <code>Application</code>.
07: * All methods do nothing.
08: * @version $Revision: 1.2 $ $Date: 1998/06/10 09:43:55 $
09: */
10: public class ApplicationImpl implements Application {
11: public void startDocument() throws Exception {
12: }
13:
14: public void endDocument() throws Exception {
15: }
16:
17: public void startElement(StartElementEvent event) throws Exception {
18: }
19:
20: public void characterData(CharacterDataEvent event)
21: throws Exception {
22: }
23:
24: public void endElement(EndElementEvent event) throws Exception {
25: }
26:
27: public void processingInstruction(ProcessingInstructionEvent event)
28: throws Exception {
29: }
30:
31: public void endProlog(EndPrologEvent event) throws Exception {
32: }
33:
34: public void comment(CommentEvent event) throws Exception {
35: }
36:
37: public void startCdataSection(StartCdataSectionEvent event)
38: throws Exception {
39: }
40:
41: public void endCdataSection(EndCdataSectionEvent event)
42: throws Exception {
43: }
44:
45: public void startEntityReference(StartEntityReferenceEvent event)
46: throws Exception {
47: }
48:
49: public void endEntityReference(EndEntityReferenceEvent event)
50: throws Exception {
51: }
52:
53: public void startDocumentTypeDeclaration(
54: StartDocumentTypeDeclarationEvent event) throws Exception {
55: }
56:
57: public void endDocumentTypeDeclaration(
58: EndDocumentTypeDeclarationEvent event) throws Exception {
59: }
60:
61: public void markupDeclaration(MarkupDeclarationEvent event)
62: throws Exception {
63: }
64: }
|