1 package com.jclark.xml.parse.awt;
2 
3 import java.awt.AWTException;
4 import com.jclark.xml.parse.*;
5 
6 /**
7  * A default implementation of <code>Application</code>.
8  * All methods do nothing.
9  * @version $Revision: 1.2 $ $Date: 1998/06/10 09:43:55 $
10  */
11 public class ApplicationImpl implements Application {
startDocument()12   public void startDocument() throws AWTException { }
endDocument()13   public void endDocument() throws AWTException { }
startElement(StartElementEvent event)14   public void startElement(StartElementEvent event) throws AWTException { }
characterData(CharacterDataEvent event)15   public void characterData(CharacterDataEvent event) throws AWTException { }
endElement(EndElementEvent event)16   public void endElement(EndElementEvent event) throws AWTException { }
processingInstruction(ProcessingInstructionEvent pi)17   public void processingInstruction(ProcessingInstructionEvent pi) throws AWTException { }
endProlog(EndPrologEvent event)18   public void endProlog(EndPrologEvent event) throws AWTException { }
comment(CommentEvent event)19   public void comment(CommentEvent event) throws AWTException { }
startCdataSection(StartCdataSectionEvent event)20   public void startCdataSection(StartCdataSectionEvent event) throws AWTException { }
endCdataSection(EndCdataSectionEvent event)21   public void endCdataSection(EndCdataSectionEvent event) throws AWTException { }
startEntityReference(StartEntityReferenceEvent event)22   public void startEntityReference(StartEntityReferenceEvent event) throws AWTException { }
endEntityReference(EndEntityReferenceEvent event)23   public void endEntityReference(EndEntityReferenceEvent event) throws AWTException { }
startDocumentTypeDeclaration(StartDocumentTypeDeclarationEvent event)24   public void startDocumentTypeDeclaration(StartDocumentTypeDeclarationEvent event) throws AWTException { }
endDocumentTypeDeclaration(EndDocumentTypeDeclarationEvent event)25   public void endDocumentTypeDeclaration(EndDocumentTypeDeclarationEvent event) throws AWTException { }
markupDeclaration(MarkupDeclarationEvent event)26   public void markupDeclaration(MarkupDeclarationEvent event) throws AWTException { }
27 }
28