org.cyberneko.html.filters
public class Identity extends DefaultFilter
Note: This filter requires the augmentations feature to be turned on. For example:
XMLParserConfiguration parser = new HTMLConfiguration(); parser.setFeature("http://cyberneko.org/html/features/augmentations", true);
Note: This isn't exactly the identify transform because the element and attributes names may have been modified from the original document. For example, by default, NekoHTML converts element names to upper-case and attribute names to lower-case.
Version: $Id: Identity.java,v 1.4 2005/02/14 03:56:54 andyc Exp $
Field Summary | |
---|---|
protected static String | AUGMENTATIONS Augmentations feature identifier. |
protected static String | FILTERS Filters property identifier. |
Method Summary | |
---|---|
void | emptyElement(QName element, XMLAttributes attributes, Augmentations augs) Empty element. |
void | endElement(QName element, Augmentations augs) End element. |
void | startElement(QName element, XMLAttributes attributes, Augmentations augs) Start element. |
protected static boolean | synthesized(Augmentations augs) Returns true if the information provided is synthesized. |