public class DefaultFilter extends Object implements XMLDocumentFilter, HTMLComponent
| Modifier and Type | Field and Description |
|---|---|
protected XMLDocumentHandler |
fDocumentHandler
Document handler.
|
protected XMLDocumentSource |
fDocumentSource
Document source.
|
| Constructor and Description |
|---|
DefaultFilter() |
| Modifier and Type | Method and Description |
|---|---|
void |
characters(XMLString text,
Augmentations augs)
Characters.
|
void |
comment(XMLString text,
Augmentations augs)
Comment.
|
void |
doctypeDecl(String root,
String publicId,
String systemId,
Augmentations augs)
Doctype declaration.
|
void |
emptyElement(QName element,
XMLAttributes attributes,
Augmentations augs)
Empty element.
|
void |
endCDATA(Augmentations augs)
End CDATA section.
|
void |
endDocument(Augmentations augs)
End document.
|
void |
endElement(QName element,
Augmentations augs)
End element.
|
void |
endGeneralEntity(String name,
Augmentations augs)
End general entity.
|
XMLDocumentHandler |
getDocumentHandler()
Returns the document handler.
|
XMLDocumentSource |
getDocumentSource()
Returns the document source.
|
Boolean |
getFeatureDefault(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.
|
Object |
getPropertyDefault(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.
|
String[] |
getRecognizedFeatures()
Returns a list of feature identifiers that are recognized by
this component.
|
String[] |
getRecognizedProperties()
Returns a list of property identifiers that are recognized by
this component.
|
void |
ignorableWhitespace(XMLString text,
Augmentations augs)
Ignorable whitespace.
|
protected static String[] |
merge(String[] array1,
String[] array2)
Utility method for merging string arrays for recognized features
and recognized properties.
|
void |
processingInstruction(String target,
XMLString data,
Augmentations augs)
Processing instruction.
|
void |
reset(XMLComponentManager componentManager)
Resets the component.
|
void |
setDocumentHandler(XMLDocumentHandler handler)
Sets the document handler.
|
void |
setDocumentSource(XMLDocumentSource source)
Sets the document source.
|
void |
setFeature(String featureId,
boolean state)
Sets the state of a feature.
|
void |
setProperty(String propertyId,
Object value)
Sets the value of a property.
|
void |
startCDATA(Augmentations augs)
Start CDATA section.
|
void |
startDocument(XMLLocator locator,
String encoding,
NamespaceContext nscontext,
Augmentations augs)
Start document.
|
void |
startElement(QName element,
XMLAttributes attributes,
Augmentations augs)
Start element.
|
void |
startGeneralEntity(String name,
XMLResourceIdentifier id,
String encoding,
Augmentations augs)
Start general entity.
|
void |
textDecl(String version,
String encoding,
Augmentations augs)
Text declaration.
|
void |
xmlDecl(String version,
String encoding,
String standalone,
Augmentations augs)
XML declaration.
|
protected XMLDocumentHandler fDocumentHandler
protected XMLDocumentSource fDocumentSource
public void setDocumentHandler(XMLDocumentHandler handler)
setDocumentHandler in interface XMLDocumentSourcehandler - the new handlerpublic XMLDocumentHandler getDocumentHandler()
getDocumentHandler in interface XMLDocumentSourcepublic void setDocumentSource(XMLDocumentSource source)
setDocumentSource in interface XMLDocumentHandlersource - the new sourcepublic XMLDocumentSource getDocumentSource()
getDocumentSource in interface XMLDocumentHandlerpublic void startDocument(XMLLocator locator, String encoding, NamespaceContext nscontext, Augmentations augs) throws XNIException
startDocument in interface XMLDocumentHandlerlocator - The document locator, or null if the document
location cannot be reported during the parsing of
this document. However, it is strongly
recommended that a locator be supplied that can at
least report the system identifier of the document.encoding - The auto-detected IANA encoding name of the entity
stream. This value will be null in those situations
where the entity encoding is not auto-detected (e.g.
internal entities or a document entity that is parsed
from a java.io.Reader).nscontext - The namespace context in effect at the start of this
document. This object represents the current context.
Implementors of this class are responsible for
copying the namespace bindings from the the current
context (and its parent contexts) if that information
is important.augs - Additional information that may include infoset
augmentationsXNIException - Thrown by handler to signal an error.public void xmlDecl(String version, String encoding, String standalone, Augmentations augs) throws XNIException
xmlDecl in interface XMLDocumentHandlerversion - The XML version.encoding - The IANA encoding name of the document, or null if not
specified.standalone - The standalone value, or null if not specified.augs - Additional information that may include infoset
augmentationsXNIException - Thrown by handler to signal an error.public void doctypeDecl(String root, String publicId, String systemId, Augmentations augs) throws XNIException
doctypeDecl in interface XMLDocumentHandlerroot - The name of the root element.publicId - The public identifier if an external DTD or null if the
external DTD is specified using SYSTEM.systemId - The system identifier if an external DTD, null otherwise.augs - Additional information that may include infoset
augmentationsXNIException - Thrown by handler to signal an error.public void comment(XMLString text, Augmentations augs) throws XNIException
comment in interface XMLDocumentHandlertext - The text in the comment.augs - Additional information that may include infoset augmentationsXNIException - Thrown by application to signal an error.public void processingInstruction(String target, XMLString data, Augmentations augs) throws XNIException
processingInstruction in interface XMLDocumentHandlertarget - The target.data - The data or null if none specified.augs - Additional information that may include infoset augmentationsXNIException - Thrown by handler to signal an error.public void startElement(QName element, XMLAttributes attributes, Augmentations augs) throws XNIException
startElement in interface XMLDocumentHandlerelement - The name of the element.attributes - The element attributes.augs - Additional information that may include infoset
augmentationsXNIException - Thrown by handler to signal an error.public void emptyElement(QName element, XMLAttributes attributes, Augmentations augs) throws XNIException
emptyElement in interface XMLDocumentHandlerelement - The name of the element.attributes - The element attributes.augs - Additional information that may include infoset
augmentationsXNIException - Thrown by handler to signal an error.public void characters(XMLString text, Augmentations augs) throws XNIException
characters in interface XMLDocumentHandlertext - The content.augs - Additional information that may include infoset augmentationsXNIException - Thrown by handler to signal an error.public void ignorableWhitespace(XMLString text, Augmentations augs) throws XNIException
ignorableWhitespace in interface XMLDocumentHandlertext - The ignorable whitespace.augs - Additional information that may include infoset augmentationsXNIException - Thrown by handler to signal an error.public void startGeneralEntity(String name, XMLResourceIdentifier id, String encoding, Augmentations augs) throws XNIException
startGeneralEntity in interface XMLDocumentHandlername - The name of the general entity.id - The resource identifier.encoding - The auto-detected IANA encoding name of the entity stream.
This value will be null in those situations where the
entity encoding is not auto-detected (e.g. internal
entities or a document entity that is parsed from a
java.io.Reader).augs - Additional information that may include infoset
augmentationsXNIException - Thrown by handler to signal an error.public void textDecl(String version, String encoding, Augmentations augs) throws XNIException
textDecl in interface XMLDocumentHandlerversion - The XML version, or null if not specified.encoding - The IANA encoding name of the entity.augs - Additional information that may include infoset augmentationsXNIException - Thrown by handler to signal an error.public void endGeneralEntity(String name, Augmentations augs) throws XNIException
endGeneralEntity in interface XMLDocumentHandlername - The name of the entity.augs - Additional information that may include infoset augmentationsXNIException - Thrown by handler to signal an error.public void startCDATA(Augmentations augs) throws XNIException
startCDATA in interface XMLDocumentHandleraugs - Additional information that may include infoset augmentationsXNIException - Thrown by handler to signal an error.public void endCDATA(Augmentations augs) throws XNIException
endCDATA in interface XMLDocumentHandleraugs - Additional information that may include infoset augmentationsXNIException - Thrown by handler to signal an error.public void endElement(QName element, Augmentations augs) throws XNIException
endElement in interface XMLDocumentHandlerelement - The name of the element.augs - Additional information that may include infoset augmentationsXNIException - Thrown by handler to signal an error.public void endDocument(Augmentations augs) throws XNIException
endDocument in interface XMLDocumentHandleraugs - Additional information that may include infoset augmentationsXNIException - Thrown by handler to signal an error.public String[] getRecognizedFeatures()
getRecognizedFeatures in interface XMLComponentpublic Boolean getFeatureDefault(String featureId)
getFeatureDefault in interface HTMLComponentgetFeatureDefault in interface XMLComponentfeatureId - The feature identifier.public String[] getRecognizedProperties()
getRecognizedProperties in interface XMLComponentpublic Object getPropertyDefault(String propertyId)
getPropertyDefault in interface HTMLComponentgetPropertyDefault in interface XMLComponentpropertyId - The property identifier.public void reset(XMLComponentManager componentManager) throws XMLConfigurationException
reset in interface XMLComponentcomponentManager - The component manager.XNIException - Thrown by component on initialization error.XMLConfigurationExceptionpublic void setFeature(String featureId, boolean state) throws XMLConfigurationException
Note: Components should silently ignore features that do not affect the operation of the component.
setFeature in interface XMLComponentfeatureId - The feature identifier.state - The state of the feature.XMLConfigurationException - Thrown for configuration error.
In general, components should
only throw this exception if
it is really
a critical error.public void setProperty(String propertyId, Object value) throws XMLConfigurationException
Note: Components should silently ignore properties that do not affect the operation of the component.
setProperty in interface XMLComponentpropertyId - The property identifier.value - The value of the property.XMLConfigurationException - Thrown for configuration error.
In general, components should
only throw this exception if
it is really
a critical error.Copyright © 2023 Gargoyle Software Inc.. All rights reserved.