Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

jbreport.core
Interface XMLParsingElement  view XMLParsingElement download XMLParsingElement.java

All Known Implementing Classes:
Style

public interface XMLParsingElement

This interface defines the methods that should be implemented so that an XML parse tree can be appropriately constructed.

Version:
$Revision: 1.1 $

Method Summary
 boolean xmlCanParse()
          Can this element parse xml in this context? This might be false if the class handles more than one type of element in a hierarchy.
 void xmlCData(XMLHandler handler, java.lang.String cdata)
          This is called to return the embedded character data from the xml element
 void xmlParse(XMLHandler handler, java.lang.String localName, org.xml.sax.Attributes attributes)
          This is called to parse some sub-element of this particular element.
 

Method Detail

xmlCanParse

public boolean xmlCanParse()
Can this element parse xml in this context? This might be false if the class handles more than one type of element in a hierarchy.


xmlParse

public void xmlParse(XMLHandler handler,
                     java.lang.String localName,
                     org.xml.sax.Attributes attributes)
This is called to parse some sub-element of this particular element.


xmlCData

public void xmlCData(XMLHandler handler,
                     java.lang.String cdata)
This is called to return the embedded character data from the xml element