public class XSLTElementProcessor extends ElemTemplateElement
m_docOrderNumber, m_hasVariableDecl, m_parentNode
actualEncoding, fDocumentURI
ATTRIBUTE_NODE, CDATA_SECTION_NODE, COMMENT_NODE, DOCUMENT_FRAGMENT_NODE, DOCUMENT_NODE, DOCUMENT_POSITION_CONTAINED_BY, DOCUMENT_POSITION_CONTAINS, DOCUMENT_POSITION_DISCONNECTED, DOCUMENT_POSITION_FOLLOWING, DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC, DOCUMENT_POSITION_PRECEDING, DOCUMENT_TYPE_NODE, ELEMENT_NODE, ENTITY_NODE, ENTITY_REFERENCE_NODE, NOTATION_NODE, PROCESSING_INSTRUCTION_NODE, TEXT_NODE
Modifier and Type | Method and Description |
---|---|
void |
characters(StylesheetHandler handler,
char[] ch,
int start,
int length)
Receive notification of character data inside an element.
|
void |
endElement(StylesheetHandler handler,
String uri,
String localName,
String rawName)
Receive notification of the end of an element.
|
void |
ignorableWhitespace(StylesheetHandler handler,
char[] ch,
int start,
int length)
Receive notification of ignorable whitespace in element content.
|
void |
notationDecl(StylesheetHandler handler,
String name,
String publicId,
String systemId)
Receive notification of a notation declaration.
|
void |
processingInstruction(StylesheetHandler handler,
String target,
String data)
Receive notification of a processing instruction.
|
InputSource |
resolveEntity(StylesheetHandler handler,
String publicId,
String systemId)
Resolve an external entity.
|
void |
skippedEntity(StylesheetHandler handler,
String name)
Receive notification of a skipped entity.
|
void |
startElement(StylesheetHandler handler,
String uri,
String localName,
String rawName,
Attributes attributes)
Receive notification of the start of an element.
|
void |
startNonText(StylesheetHandler handler)
Receive notification of the start of the non-text event.
|
void |
unparsedEntityDecl(StylesheetHandler handler,
String name,
String publicId,
String systemId,
String notationName)
Receive notification of an unparsed entity declaration.
|
accept, appendChild, appendChild, callChildVisitors, callChildVisitors, callVisitors, canAcceptVariables, canStripWhiteSpace, compareTo, compose, containsExcludeResultPrefix, endCompose, error, error, execute, exprAddChild, exprGetChild, exprGetNumChildren, exprGetParent, exprSetParent, getBaseIdentifier, getChildNodes, getColumnNumber, getDeclaredPrefixes, getDOMBackPointer, getEndColumnNumber, getEndLineNumber, getFirstChild, getFirstChildElem, getLastChild, getLastChildElem, getLength, getLineNumber, getLocalName, getNamespaceForPrefix, getNamespaceForPrefix, getNextSibling, getNextSiblingElem, getNodeName, getNodeType, getOwnerDocument, getOwnerXSLTemplate, getParentElem, getParentNode, getParentNodeElem, getPreviousSibling, getPreviousSiblingElem, getPublicId, getStylesheet, getStylesheetComposed, getStylesheetRoot, getSystemId, getTagName, getUid, getXmlSpace, getXSLToken, handlesNullPrefixes, hasChildNodes, hasTextLitOnly, hasVariableDecl, insertBefore, isCompiledTemplate, item, recompose, removeChild, replaceChild, replaceChild, resolvePrefixTables, runtimeInit, setDOMBackPointer, setEndLocaterInfo, setLocaterInfo, setParentElem, setPrefixes, setPrefixes, setUid, setXmlSpace, shouldStripWhiteSpace
adoptNode, appendData, cloneNode, compareDocumentPosition, createAttribute, createAttributeNS, createCDATASection, createComment, createDocumentFragment, createElement, createElementNS, createEntityReference, createProcessingInstruction, createTextNode, deleteData, getActualEncoding, getAttribute, getAttributeNode, getAttributeNodeNS, getAttributeNS, getAttributes, getBaseURI, getDoctype, getDocumentElement, getDocumentURI, getDomConfig, getElementById, getElementsByTagName, getElementsByTagNameNS, getFeature, getImplementation, getInputEncoding, getNamespaceURI, getNodeValue, getOwnerElement, getPrefix, getSchemaTypeInfo, getSpecified, getStrictErrorChecking, getTextContent, getUserData, getWholeText, getXmlEncoding, getXmlStandalone, getXmlVersion, hasAttribute, hasAttributeNS, hasAttributes, importNode, insertData, isDefaultNamespace, isEqualNode, isId, isSameNode, isSupported, isWhitespaceInElementContent, lookupNamespaceURI, lookupPrefix, normalize, normalizeDocument, removeAttribute, removeAttributeNode, removeAttributeNS, removeChild, renameNode, replaceData, replaceWholeText, setActualEncoding, setAttribute, setAttributeNode, setAttributeNodeNS, setAttributeNS, setData, setDocumentURI, setIdAttribute, setIdAttribute, setIdAttributeNode, setIdAttributeNS, setInputEncoding, setNodeValue, setPrefix, setStrictErrorChecking, setTextContent, setUserData, setValue, setXmlEncoding, setXmlStandalone, setXmlVersion, splitText, substringData
public InputSource resolveEntity(StylesheetHandler handler, String publicId, String systemId) throws SAXException
handler
- non-null reference to current StylesheetHandler that is constructing the Templates.publicId
- The public identifer, or null if none is
available.systemId
- The system identifier provided in the XML
document.SAXException
public void notationDecl(StylesheetHandler handler, String name, String publicId, String systemId)
handler
- non-null reference to current StylesheetHandler that is constructing the Templates.name
- 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(StylesheetHandler handler, String name, String publicId, String systemId, String notationName)
handler
- non-null reference to current StylesheetHandler that is constructing the Templates.name
- 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 startNonText(StylesheetHandler handler) throws SAXException
handler
- non-null reference to current StylesheetHandler that is constructing the Templates.SAXException
public void startElement(StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes) throws SAXException
handler
- non-null reference to current StylesheetHandler that is constructing the Templates.uri
- 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.SAXException
public void endElement(StylesheetHandler handler, String uri, String localName, String rawName) throws SAXException
handler
- non-null reference to current StylesheetHandler that is constructing the Templates.uri
- 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
public void characters(StylesheetHandler handler, char[] ch, int start, int length) throws SAXException
handler
- non-null reference to current StylesheetHandler that is constructing the Templates.ch
- The characters.start
- The start position in the character array.length
- The number of characters to use from the
character array.SAXException
public void ignorableWhitespace(StylesheetHandler handler, char[] ch, int start, int length) throws SAXException
handler
- non-null reference to current StylesheetHandler that is constructing the Templates.ch
- The whitespace characters.start
- The start position in the character array.length
- The number of characters to use from the
character array.SAXException
public void processingInstruction(StylesheetHandler handler, String target, String data) throws SAXException
handler
- non-null reference to current StylesheetHandler that is constructing the Templates.target
- The processing instruction target.data
- The processing instruction data, or null if
none is supplied.SAXException
public void skippedEntity(StylesheetHandler handler, String name) throws SAXException
handler
- non-null reference to current StylesheetHandler that is constructing the Templates.name
- The name of the skipped entity.SAXException
Copyright © 2017 JBoss by Red Hat. All rights reserved.