Package com.day.cq.rewriter.htmlparser
Interface DocumentHandler
-
- All Known Implementing Classes:
DocumentHandlerToSAXAdapter
@Deprecated public interface DocumentHandler
Deprecated.This is replaced by the Apache Sling Html parsing.Invoked by theHTMLParserwhen elements are scanned.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description voidcharacters(char[] ch, int off, int len)Deprecated.Receive notification of unparsed character data.voidonEnd()Deprecated.Receive notification of parsing end.voidonEndElement(String name, char[] ch, int off, int len)Deprecated.Receive notification of the end of an element.voidonStart()Deprecated.Receive notification of parsing start.voidonStartElement(String name, AttributeList attList, char[] ch, int off, int len, boolean endSlash)Deprecated.Receive notification of the beginning of an element.
-
-
-
Method Detail
-
characters
void characters(char[] ch, int off, int len) throws IOExceptionDeprecated.Receive notification of unparsed character data.- Parameters:
ch- character dataoff- offset where character data startslen- length of character data- Throws:
IOException-IOException
-
onStartElement
void onStartElement(String name, AttributeList attList, char[] ch, int off, int len, boolean endSlash) throws IOException
Deprecated.Receive notification of the beginning of an element.- Parameters:
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)- Throws:
IOException-IOException
-
onEndElement
void onEndElement(String name, char[] ch, int off, int len) throws IOException
Deprecated.Receive notification of the end of an element.- Parameters:
name- tag namech- string equivalent to this notificationoff- offset where character data startslen- length of character data- Throws:
IOException-IOException
-
onStart
void onStart() throws IOExceptionDeprecated.Receive notification of parsing start.- Throws:
IOException-IOException
-
onEnd
void onEnd() throws IOExceptionDeprecated.Receive notification of parsing end.- Throws:
IOException-IOException
-
-