|
|||||||||
| Home >> All >> jbreport >> [ core overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: JAVADOC | SOURCE | DOWNLOAD | NESTED | FIELD | CONSTR | METHOD |
DETAIL: FIELD | CONSTR | METHOD | ||||||||
jbreport.core
Interface XMLParsingElement

- 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
|
|||||||||
| Home >> All >> jbreport >> [ core overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: JAVADOC | SOURCE | DOWNLOAD | NESTED | FIELD | CONSTR | METHOD |
DETAIL: FIELD | CONSTR | METHOD | ||||||||
JAVADOC