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