|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
java.lang.Objectorg.xml.sax.helpers.DefaultHandler
org.apache.xalan.processor.StylesheetHandler
Initializes and processes a stylesheet via SAX events. This class acts as essentially a state machine, maintaining a ContentHandler stack, and pushing appropriate content handlers as parse events occur.
| Constructor Summary | |
StylesheetHandler(TransformerFactoryImpl processor)
Create a StylesheetHandler object, creating a root stylesheet as the target. |
|
| Method Summary | |
void |
characters(char[] ch,
int start,
int length)
Receive notification of character data inside an element. |
XPath |
createXPath(java.lang.String str,
ElemTemplateElement owningTemplate)
Process an expression string into an XPath. |
void |
endDocument()
Receive notification of the end of the document. |
void |
endElement(java.lang.String uri,
java.lang.String localName,
java.lang.String rawName)
Receive notification of the end of an element. |
void |
endPrefixMapping(java.lang.String prefix)
Receive notification of the end of a Namespace mapping. |
void |
error(SAXParseException e)
Receive notification of a recoverable XSLT processing error. |
void |
fatalError(SAXParseException e)
Report a fatal XSLT processing error. |
java.lang.String |
getBaseIdentifier()
Return the base identifier. |
SAXSourceLocator |
getLocator()
Get the current stylesheet Locator object. |
java.lang.String |
getNamespaceForPrefix(java.lang.String prefix)
Given a namespace, get the corrisponding prefix from the current namespace support context. |
java.lang.String |
getNamespaceForPrefix(java.lang.String prefix,
Node context)
Given a namespace, get the corrisponding prefix. |
Node |
getOriginatingNode()
Set the node that is originating the SAX event. |
StylesheetRoot |
getStylesheetRoot()
Return the stylesheet root that this handler is constructing. |
java.lang.String |
getSystemId()
Get the base ID (URI or system ID) from where relative URLs will be resolved. |
Templates |
getTemplates()
When this object is used as a ContentHandler or ContentHandler, it will create a Templates object, which the caller can get once the SAX events have been completed. |
boolean |
handlesNullPrefixes()
|
void |
ignorableWhitespace(char[] ch,
int start,
int length)
Receive notification of ignorable whitespace in element content. |
boolean |
isStylesheetParsingComplete()
Test whether the _last_ endDocument() has been processed. |
void |
notationDecl(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId)
Receive notification of a notation declaration. |
void |
processingInstruction(java.lang.String target,
java.lang.String data)
Receive notification of a processing instruction. |
void |
pushStylesheet(Stylesheet s)
Push the current stylesheet being constructed. |
InputSource |
resolveEntity(java.lang.String publicId,
java.lang.String systemId)
Resolve an external entity. |
void |
setDocumentLocator(Locator locator)
Receive a Locator object for document events. |
void |
setOriginatingNode(Node n)
Set the node that is originating the SAX event. |
void |
setSystemId(java.lang.String baseID)
Set the base ID (URL or system ID) for the stylesheet created by this builder. |
void |
skippedEntity(java.lang.String name)
Receive notification of a skipped entity. |
void |
startDocument()
Receive notification of the beginning of the document. |
void |
startElement(java.lang.String uri,
java.lang.String localName,
java.lang.String rawName,
Attributes attributes)
Receive notification of the start of an element. |
void |
startPrefixMapping(java.lang.String prefix,
java.lang.String uri)
Receive notification of the start of a Namespace mapping. |
void |
unparsedEntityDecl(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId,
java.lang.String notationName)
Receive notification of an unparsed entity declaration. |
void |
warn(java.lang.String msg,
java.lang.Object[] args)
Warn the user of an problem. |
void |
warning(SAXParseException e)
Receive notification of a XSLT processing warning. |
| Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
public StylesheetHandler(TransformerFactoryImpl processor)
throws TransformerConfigurationException
processor - non-null reference to the transformer factory that owns this handler.
TransformerConfigurationException - if a StylesheetRoot
can not be constructed for some reason.| Method Detail |
public XPath createXPath(java.lang.String str,
ElemTemplateElement owningTemplate)
throws TransformerException
str - A non-null reference to a valid or invalid XPath expression string.
TransformerException - if the expression can not be processed.public java.lang.String getNamespaceForPrefix(java.lang.String prefix)
getNamespaceForPrefix in interface PrefixResolverprefix - The prefix to look up, which may be an empty string ("") for the default Namespace.
public java.lang.String getNamespaceForPrefix(java.lang.String prefix,
Node context)
PrefixResolver interface,
and will throw an error if invoked on this object.
getNamespaceForPrefix in interface PrefixResolverprefix - The prefix to look up, which may be an empty string ("") for the default Namespace.context - The node context from which to look up the URI.
public Templates getTemplates()
getTemplates in interface TemplatesHandlerpublic void setSystemId(java.lang.String baseID)
setSystemId in interface TemplatesHandlerbaseID - Base URL for this stylesheet.public java.lang.String getSystemId()
getSystemId in interface TemplatesHandlersetSystemId(java.lang.String).
public InputSource resolveEntity(java.lang.String publicId,
java.lang.String systemId)
throws SAXException
resolveEntity in interface EntityResolverresolveEntity in class DefaultHandlerpublicId - The public identifer, or null if none is
available.systemId - The system identifier provided in the XML
document.
SAXException - if the entity can not be resolved.EntityResolver.resolveEntity(java.lang.String, java.lang.String)
public void notationDecl(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId)
By default, do nothing. Application writers may override this method in a subclass if they wish to keep track of the notations declared in a document.
notationDecl in interface DTDHandlernotationDecl in class DefaultHandlername - The notation name.publicId - The notation public identifier, or null if not
available.systemId - The notation system identifier.DTDHandler.notationDecl(java.lang.String, java.lang.String, java.lang.String)
public void unparsedEntityDecl(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId,
java.lang.String notationName)
unparsedEntityDecl in interface DTDHandlerunparsedEntityDecl in class DefaultHandlername - The entity name.publicId - The entity public identifier, or null if not
available.systemId - The entity system identifier.notationName - The name of the associated notation.DTDHandler.unparsedEntityDecl(java.lang.String, java.lang.String, java.lang.String, java.lang.String)public void setDocumentLocator(Locator locator)
setDocumentLocator in interface ContentHandlersetDocumentLocator in class DefaultHandlerlocator - A locator for all SAX document events.ContentHandler.setDocumentLocator(org.xml.sax.Locator),
Locator
public void startDocument()
throws SAXException
startDocument in interface ContentHandlerstartDocument in class DefaultHandlerSAXException - Any SAX exception, possibly
wrapping another exception.ContentHandler.startDocument()public boolean isStylesheetParsingComplete()
public void endDocument()
throws SAXException
endDocument in interface ContentHandlerendDocument in class DefaultHandlerSAXException - Any SAX exception, possibly
wrapping another exception.ContentHandler.endDocument()
public void startPrefixMapping(java.lang.String prefix,
java.lang.String uri)
throws SAXException
By default, do nothing. Application writers may override this method in a subclass to take specific actions at the start of each element (such as allocating a new tree node or writing output to a file).
startPrefixMapping in interface ContentHandlerstartPrefixMapping in class DefaultHandlerprefix - The Namespace prefix being declared.uri - The Namespace URI mapped to the prefix.
SAXException - Any SAX exception, possibly
wrapping another exception.ContentHandler.startPrefixMapping(java.lang.String, java.lang.String)
public void endPrefixMapping(java.lang.String prefix)
throws SAXException
By default, do nothing. Application writers may override this method in a subclass to take specific actions at the start of each element (such as allocating a new tree node or writing output to a file).
endPrefixMapping in interface ContentHandlerendPrefixMapping in class DefaultHandlerprefix - The Namespace prefix being declared.
SAXException - Any SAX exception, possibly
wrapping another exception.ContentHandler.endPrefixMapping(java.lang.String)
public void startElement(java.lang.String uri,
java.lang.String localName,
java.lang.String rawName,
Attributes attributes)
throws SAXException
startElement in interface ContentHandlerstartElement in class DefaultHandleruri - The Namespace URI, or an empty string.localName - The local name (without prefix), or empty string if not namespace processing.rawName - The qualified name (with prefix).attributes - The specified or defaulted attributes.
SAXExceptionContentHandler.startElement(java.lang.String, java.lang.String, java.lang.String, org.xml.sax.Attributes)
public void endElement(java.lang.String uri,
java.lang.String localName,
java.lang.String rawName)
throws SAXException
endElement in interface ContentHandlerendElement in class DefaultHandleruri - The Namespace URI, or an empty string.localName - The local name (without prefix), or empty string if not namespace processing.rawName - The qualified name (with prefix).
SAXException - Any SAX exception, possibly
wrapping another exception.ContentHandler.endElement(java.lang.String, java.lang.String, java.lang.String)
public void characters(char[] ch,
int start,
int length)
throws SAXException
characters in interface ContentHandlercharacters in class DefaultHandlerch - The characters.start - The start position in the character array.length - The number of characters to use from the
character array.
SAXException - Any SAX exception, possibly
wrapping another exception.ContentHandler.characters(char[], int, int)
public void ignorableWhitespace(char[] ch,
int start,
int length)
throws SAXException
ignorableWhitespace in interface ContentHandlerignorableWhitespace in class DefaultHandlerch - The whitespace characters.start - The start position in the character array.length - The number of characters to use from the
character array.
SAXException - Any SAX exception, possibly
wrapping another exception.ContentHandler.ignorableWhitespace(char[], int, int)
public void processingInstruction(java.lang.String target,
java.lang.String data)
throws SAXException
The Parser will invoke this method once for each processing instruction found: note that processing instructions may occur before or after the main document element.
A SAX parser should never report an XML declaration (XML 1.0, section 2.8) or a text declaration (XML 1.0, section 4.3.1) using this method.
By default, do nothing. Application writers may override this method in a subclass to take specific actions for each processing instruction, such as setting status variables or invoking other methods.
processingInstruction in interface ContentHandlerprocessingInstruction in class DefaultHandlertarget - The processing instruction target.data - The processing instruction data, or null if
none is supplied.
SAXException - Any SAX exception, possibly
wrapping another exception.ContentHandler.processingInstruction(java.lang.String, java.lang.String)
public void skippedEntity(java.lang.String name)
throws SAXException
By default, do nothing. Application writers may override this method in a subclass to take specific actions for each processing instruction, such as setting status variables or invoking other methods.
skippedEntity in interface ContentHandlerskippedEntity in class DefaultHandlername - The name of the skipped entity.
SAXException - Any SAX exception, possibly
wrapping another exception.ContentHandler.processingInstruction(java.lang.String, java.lang.String)
public void warn(java.lang.String msg,
java.lang.Object[] args)
throws SAXException
msg - An key into the XSLTErrorResources
table, that is one of the WG_ prefixed definitions.args - An array of arguments for the given warning.
SAXException - that wraps a
TransformerException if the current
ErrorListener.warning(javax.xml.transform.TransformerException)
method chooses to flag this condition as an error.
public void warning(SAXParseException e)
throws SAXException
warning in interface ErrorHandlerwarning in class DefaultHandlere - The warning information encoded as an exception.
SAXException - that wraps a
TransformerException if the current
ErrorListener.warning(javax.xml.transform.TransformerException)
method chooses to flag this condition as an error.ErrorHandler.warning(org.xml.sax.SAXParseException),
SAXParseException
public void error(SAXParseException e)
throws SAXException
error in interface ErrorHandlererror in class DefaultHandlere - The error information encoded as an exception.
SAXException - that wraps a
TransformerException if the current
ErrorListener.error(javax.xml.transform.TransformerException)
method chooses to flag this condition as an error.ErrorHandler.warning(org.xml.sax.SAXParseException),
SAXParseException
public void fatalError(SAXParseException e)
throws SAXException
fatalError in interface ErrorHandlerfatalError in class DefaultHandlere - The error information encoded as an exception.
SAXException - that wraps a
TransformerException if the current
ErrorListener.fatalError(javax.xml.transform.TransformerException)
method chooses to flag this condition as an error.ErrorHandler.fatalError(org.xml.sax.SAXParseException),
SAXParseExceptionpublic StylesheetRoot getStylesheetRoot()
public void pushStylesheet(Stylesheet s)
s - non-null reference to a stylesheet.public java.lang.String getBaseIdentifier()
getBaseIdentifier in interface PrefixResolverpublic SAXSourceLocator getLocator()
public void setOriginatingNode(Node n)
setOriginatingNode in interface NodeConsumern - Reference to node that originated the current event.NodeConsumerpublic Node getOriginatingNode()
NodeConsumerpublic boolean handlesNullPrefixes()
handlesNullPrefixes in interface PrefixResolverPrefixResolver.handlesNullPrefixes()
|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||