All Packages  Class Hierarchy  This Package  Previous  Next  Index
  Interface com.jclark.xml.parse.awt.Application
  -  public interface Application
  -  extends Application
An extension ofApplication that restricts methods
 to throwing AWTException.
   
  -   characterData(CharacterDataEvent) characterData(CharacterDataEvent)
-   Reports character data.
  
-   comment(CommentEvent) comment(CommentEvent)
-   Reports a comment.
  
-   endCdataSection(EndCdataSectionEvent) endCdataSection(EndCdataSectionEvent)
-   Reports the end of a CDATA section.
  
-   endDocument() endDocument()
-   Reports the end of the document.
  
-   endDocumentTypeDeclaration(EndDocumentTypeDeclarationEvent) endDocumentTypeDeclaration(EndDocumentTypeDeclarationEvent)
-   Reports the end of the document type declaration.
  
-   endElement(EndElementEvent) endElement(EndElementEvent)
-   Reports the end of a element.
  
-   endEntityReference(EndEntityReferenceEvent) endEntityReference(EndEntityReferenceEvent)
-   Reports the start of an entity reference.
  
-   endProlog(EndPrologEvent) endProlog(EndPrologEvent)
-   Reports the end of the prolog.
  
-   markupDeclaration(MarkupDeclarationEvent) markupDeclaration(MarkupDeclarationEvent)
-   Reports a markup declaration.
  
-   processingInstruction(ProcessingInstructionEvent) processingInstruction(ProcessingInstructionEvent)
-   Reports a processing instruction.
  
-   startCdataSection(StartCdataSectionEvent) startCdataSection(StartCdataSectionEvent)
-   Reports the start of a CDATA section.
  
-   startDocument() startDocument()
-   Reports the start of the document.
  
-   startDocumentTypeDeclaration(StartDocumentTypeDeclarationEvent) startDocumentTypeDeclaration(StartDocumentTypeDeclarationEvent)
-   Reports the start of the document type declaration.
  
-   startElement(StartElementEvent) startElement(StartElementEvent)
-   Reports the start of an element.
  
-   startEntityReference(StartEntityReferenceEvent) startEntityReference(StartEntityReferenceEvent)
-   Reports the start of an entity reference.
   
 startDocument
startDocument
 public abstract void startDocument() throws AWTException
  -  Reports the start of the document.
 This is called once per well-formed document before any other methods.
 
 endProlog
endProlog
 public abstract void endProlog(EndPrologEvent event) throws AWTException
  -  Reports the end of the prolog.
 Called before the start of the first element.
 
 startElement
startElement
 public abstract void startElement(StartElementEvent event) throws AWTException
  -  Reports the start of an element.
 This includes both start-tags and empty elements.
 
 characterData
characterData
 public abstract void characterData(CharacterDataEvent event) throws AWTException
  -  Reports character data.
 
 endElement
endElement
 public abstract void endElement(EndElementEvent event) throws AWTException
  -  Reports the end of a element.
 This includes both end-tags and empty elements.
 
 processingInstruction
processingInstruction
 public abstract void processingInstruction(ProcessingInstructionEvent event) throws AWTException
  -  Reports a processing instruction.
 Note that processing instructions can occur before or after the
 document element.
 
 endDocument
endDocument
 public abstract void endDocument() throws AWTException
  -  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.
 
 comment
comment
 public abstract void comment(CommentEvent event) throws AWTException
  -  Reports a comment.
 Note that comments can occur before or after the
 document element.
 
 startCdataSection
startCdataSection
 public abstract void startCdataSection(StartCdataSectionEvent event) throws AWTException
  -  Reports the start of a CDATA section.
 
 endCdataSection
endCdataSection
 public abstract void endCdataSection(EndCdataSectionEvent event) throws AWTException
  -  Reports the end of a CDATA section.
 
 startEntityReference
startEntityReference
 public abstract void startEntityReference(StartEntityReferenceEvent event) throws AWTException
  -  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.
 
 endEntityReference
endEntityReference
 public abstract void endEntityReference(EndEntityReferenceEvent event) throws AWTException
  -  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.
 
 startDocumentTypeDeclaration
startDocumentTypeDeclaration
 public abstract void startDocumentTypeDeclaration(StartDocumentTypeDeclarationEvent event) throws AWTException
  -  Reports the start of the document type declaration.
 
 endDocumentTypeDeclaration
endDocumentTypeDeclaration
 public abstract void endDocumentTypeDeclaration(EndDocumentTypeDeclarationEvent event) throws AWTException
  -  Reports the end of the document type declaration.
 
 markupDeclaration
markupDeclaration
 public abstract void markupDeclaration(MarkupDeclarationEvent event) throws AWTException
  -  Reports a markup declaration.
 
All Packages  Class Hierarchy  This Package  Previous  Next  Index