@Deprecated
public interface DocumentHandler
HTMLParser
when elements are scanned.Modifier and Type | Method and Description |
---|---|
void |
characters(char[] ch,
int off,
int len)
Deprecated.
Receive notification of unparsed character data.
|
void |
onEnd()
Deprecated.
Receive notification of parsing end.
|
void |
onEndElement(java.lang.String name,
char[] ch,
int off,
int len)
Deprecated.
Receive notification of the end of an element.
|
void |
onStart()
Deprecated.
Receive notification of parsing start.
|
void |
onStartElement(java.lang.String name,
AttributeList attList,
char[] ch,
int off,
int len,
boolean endSlash)
Deprecated.
Receive notification of the beginning of an element.
|
void characters(char[] ch, int off, int len) throws java.io.IOException
ch
- character dataoff
- offset where character data startslen
- length of character datajava.io.IOException
- IOException
void onStartElement(java.lang.String name, AttributeList attList, char[] ch, int off, int len, boolean endSlash) throws java.io.IOException
name
- tag nameattList
- attribute listch
- string equivalent to this notificationoff
- offset where character data startslen
- length of character dataendSlash
- flag indicating whether the element is closed with
an ending slash (xhtml-compliant)java.io.IOException
- IOException
void onEndElement(java.lang.String name, char[] ch, int off, int len) throws java.io.IOException
name
- tag namech
- string equivalent to this notificationoff
- offset where character data startslen
- length of character datajava.io.IOException
- IOException
void onStart() throws java.io.IOException
java.io.IOException
- IOException
void onEnd() throws java.io.IOException
java.io.IOException
- IOException
Copyright © 2010 - 2020 Adobe. All Rights Reserved