Package org.codelibs.nekohtml
Interface HTMLComponent
-
- All Superinterfaces:
org.apache.xerces.xni.parser.XMLComponent
- All Known Implementing Classes:
DefaultFilter,ElementRemover,HTMLScanner,HTMLTagBalancer,Identity,NamespaceBinder,Purifier,Writer
public interface HTMLComponent extends org.apache.xerces.xni.parser.XMLComponentThis interface extends the XNIXMLComponentinterface to add methods that allow the preferred default values for features and properties to be queried.- Version:
- $Id: HTMLComponent.java,v 1.4 2005/02/14 03:56:54 andyc Exp $
- Author:
- Andy Clark
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.BooleangetFeatureDefault(java.lang.String featureId)Returns the default state for a feature, or null if this component does not want to report a default value for this feature.java.lang.ObjectgetPropertyDefault(java.lang.String propertyId)Returns the default state for a property, or null if this component does not want to report a default value for this property.
-
-
-
Method Detail
-
getFeatureDefault
java.lang.Boolean getFeatureDefault(java.lang.String featureId)
Returns the default state for a feature, or null if this component does not want to report a default value for this feature.- Specified by:
getFeatureDefaultin interfaceorg.apache.xerces.xni.parser.XMLComponent
-
getPropertyDefault
java.lang.Object getPropertyDefault(java.lang.String propertyId)
Returns the default state for a property, or null if this component does not want to report a default value for this property.- Specified by:
getPropertyDefaultin interfaceorg.apache.xerces.xni.parser.XMLComponent
-
-