Package org.codelibs.nekohtml
Interface HTMLTagBalancingListener
-
public interface HTMLTagBalancingListenerXMLDocumentHandler implementing this interface will get notified of elements discarded by the tag balancer when they:- are configured using
HTMLConfiguration - activate the tag balancing feature
- Version:
- $Id$
- Author:
- Marc Guillemot
- are configured using
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidignoredEndElement(org.apache.xerces.xni.QName element, org.apache.xerces.xni.Augmentations augs)Notifies that the end element has been ignored.voidignoredStartElement(org.apache.xerces.xni.QName elem, org.apache.xerces.xni.XMLAttributes attrs, org.apache.xerces.xni.Augmentations augs)Notifies that the start element has been ignored.
-
-
-
Method Detail
-
ignoredStartElement
void ignoredStartElement(org.apache.xerces.xni.QName elem, org.apache.xerces.xni.XMLAttributes attrs, org.apache.xerces.xni.Augmentations augs)Notifies that the start element has been ignored.
-
ignoredEndElement
void ignoredEndElement(org.apache.xerces.xni.QName element, org.apache.xerces.xni.Augmentations augs)Notifies that the end element has been ignored.
-
-