All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface com.jclark.xml.parse.io.Application

public interface Application
extends Application
An extension of Application that restricts methods to throwing IOException.


Method Index

 o characterData(CharacterDataEvent)
Reports character data.
 o comment(CommentEvent)
Reports a comment.
 o endCdataSection(EndCdataSectionEvent)
Reports the end of a CDATA section.
 o endDocument()
Reports the end of the document.
 o endDocumentTypeDeclaration(EndDocumentTypeDeclarationEvent)
Reports the end of the document type declaration.
 o endElement(EndElementEvent)
Reports the end of a element.
 o endEntityReference(EndEntityReferenceEvent)
Reports the start of an entity reference.
 o endProlog(EndPrologEvent)
Reports the end of the prolog.
 o markupDeclaration(MarkupDeclarationEvent)
Reports a markup declaration.
 o processingInstruction(ProcessingInstructionEvent)
Reports a processing instruction.
 o startCdataSection(StartCdataSectionEvent)
Reports the start of a CDATA section.
 o startDocument()
Reports the start of the document.
 o startDocumentTypeDeclaration(StartDocumentTypeDeclarationEvent)
Reports the start of the document type declaration.
 o startElement(StartElementEvent)
Reports the start of an element.
 o startEntityReference(StartEntityReferenceEvent)
Reports the start of an entity reference.

Methods

 o startDocument
 public abstract void startDocument() throws IOException
Reports the start of the document. This is called once per well-formed document before any other methods.

 o endProlog
 public abstract void endProlog(EndPrologEvent event) throws IOException
Reports the end of the prolog. Called before the start of the first element.

 o startElement
 public abstract void startElement(StartElementEvent event) throws IOException
Reports the start of an element. This includes both start-tags and empty elements.

 o characterData
 public abstract void characterData(CharacterDataEvent event) throws IOException
Reports character data.

 o endElement
 public abstract void endElement(EndElementEvent event) throws IOException
Reports the end of a element. This includes both end-tags and empty elements.

 o processingInstruction
 public abstract void processingInstruction(ProcessingInstructionEvent event) throws IOException
Reports a processing instruction. Note that processing instructions can occur before or after the document element.

 o endDocument
 public abstract void endDocument() throws IOException
Reports the end of the document. Called once per well-formed document, after all other methods. Not called if the document is not well-formed.

 o comment
 public abstract void comment(CommentEvent event) throws IOException
Reports a comment. Note that comments can occur before or after the document element.

 o startCdataSection
 public abstract void startCdataSection(StartCdataSectionEvent event) throws IOException
Reports the start of a CDATA section.

 o endCdataSection
 public abstract void endCdataSection(EndCdataSectionEvent event) throws IOException
Reports the end of a CDATA section.

 o startEntityReference
 public abstract void startEntityReference(StartEntityReferenceEvent event) throws IOException
Reports the start of an entity reference. This event will be followed by the result of parsing the entity's replacement text. This is not called for entity references in attribute values.

 o endEntityReference
 public abstract void endEntityReference(EndEntityReferenceEvent event) throws IOException
Reports the start of an entity reference. This event follow's the result of parsing the entity's replacement text. This is not called for entity references in attribute values.

 o startDocumentTypeDeclaration
 public abstract void startDocumentTypeDeclaration(StartDocumentTypeDeclarationEvent event) throws IOException
Reports the start of the document type declaration.

 o endDocumentTypeDeclaration
 public abstract void endDocumentTypeDeclaration(EndDocumentTypeDeclarationEvent event) throws IOException
Reports the end of the document type declaration.

 o markupDeclaration
 public abstract void markupDeclaration(MarkupDeclarationEvent event) throws IOException
Reports a markup declaration.


All Packages  Class Hierarchy  This Package  Previous  Next  Index