public interface HtmlStreamEventReceiver
Modifier and Type | Method and Description |
---|---|
void |
closeDocument()
Called first to indicate that no more events will be received.
|
void |
closeTag(String elementName)
Called to specify an end tag like
</elementName> . |
void |
openDocument()
Called first to indicate that events follow.
|
void |
openTag(String elementName,
List<String> attrs)
Called to specify a tag with the given name and attributes.
|
void |
text(String text)
Called to specify a text node.
|
void openDocument()
void closeDocument()
void openTag(String elementName, List<String> attrs)
attrs
- alternating attribute names and values.void closeTag(String elementName)
</elementName>
.void text(String text)
Copyright © 2017 OWASP. All rights reserved.