01: package com.jclark.xml.parse.awt;
02:
03: import java.awt.AWTException;
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:55 $
10: */
11: public class ApplicationImpl implements Application {
12: public void startDocument() throws AWTException {
13: }
14:
15: public void endDocument() throws AWTException {
16: }
17:
18: public void startElement(StartElementEvent event)
19: throws AWTException {
20: }
21:
22: public void characterData(CharacterDataEvent event)
23: throws AWTException {
24: }
25:
26: public void endElement(EndElementEvent event) throws AWTException {
27: }
28:
29: public void processingInstruction(ProcessingInstructionEvent pi)
30: throws AWTException {
31: }
32:
33: public void endProlog(EndPrologEvent event) throws AWTException {
34: }
35:
36: public void comment(CommentEvent event) throws AWTException {
37: }
38:
39: public void startCdataSection(StartCdataSectionEvent event)
40: throws AWTException {
41: }
42:
43: public void endCdataSection(EndCdataSectionEvent event)
44: throws AWTException {
45: }
46:
47: public void startEntityReference(StartEntityReferenceEvent event)
48: throws AWTException {
49: }
50:
51: public void endEntityReference(EndEntityReferenceEvent event)
52: throws AWTException {
53: }
54:
55: public void startDocumentTypeDeclaration(
56: StartDocumentTypeDeclarationEvent event)
57: throws AWTException {
58: }
59:
60: public void endDocumentTypeDeclaration(
61: EndDocumentTypeDeclarationEvent event) throws AWTException {
62: }
63:
64: public void markupDeclaration(MarkupDeclarationEvent event)
65: throws AWTException {
66: }
67: }
|