Contents | Package | Class | Tree | Deprecated | Index | Help | XML for Java 1.0.4 | ||
PREV | NEXT | SHOW LISTS | HIDE LISTS |
Refer to the SAXDriver class for a sample implementation of this interface. SAXDriver implements this interface in order to propage events across the SAX API.
Method Summary | |
void | handleEndTag(TXElement element,
boolean empty)
|
void | handleStartTag(TXElement element,
boolean empty)
|
Method Detail |
public void handleStartTag(TXElement element, boolean empty)
element
- TXElement that was parsed.
empty
- =true if the Element is an empty Element such as
<FOO key="val"/>
; otherwise, =false.
public void handleEndTag(TXElement element, boolean empty)
element
- TXElement that was parsed.
empty
- =true if the Element has no children such as <FOO key="val"/>
or or <FOO ...></FOO>
; otherwise, =false.
Contents | Package | Class | Tree | Deprecated | Index | Help | |||
PREV | NEXT | SHOW LISTS | HIDE LISTS |