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