Package com.saxonica.config.pe
Class StyleNodeFactoryPE
- java.lang.Object
-
- net.sf.saxon.style.StyleNodeFactory
-
- com.saxonica.config.pe.StyleNodeFactoryPE
-
- All Implemented Interfaces:
NodeFactory
- Direct Known Subclasses:
StyleNodeFactoryEE
public class StyleNodeFactoryPE extends StyleNodeFactory implements NodeFactory
Class StyleNodeFactoryPE: Subclass of StyleNodeFactory used for Saxon-PE.
A Factory for nodes in the stylesheet tree.
This version differs from the parent class in allowing extension elements to be constructed if the URI corresponds to an extension element factory registered in the Configuration
-
-
Field Summary
Fields Modifier and Type Field Description protected boolean
allowExtensions
-
Fields inherited from class net.sf.saxon.style.StyleNodeFactory
config, namePool
-
-
Constructor Summary
Constructors Constructor Description StyleNodeFactoryPE(Configuration config, Compilation compilation)
Create the node factory for representing an XSLT stylesheet as a tree structure
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
isElementAvailable(java.lang.String uri, java.lang.String localName, boolean instructionsOnly)
Method to support the element-available() functionAccumulatorRegistry
makeAccumulatorManager()
ElementImpl
makeElementNode(NodeInfo parent, NodeName elementName, SchemaType elementType, boolean isNilled, AttributeMap attlist, NamespaceMap namespaces, PipelineConfiguration pipe, Location location, int sequence)
Create an Element node.-
Methods inherited from class net.sf.saxon.style.StyleNodeFactory
getCompilation, getConfiguration, isTopLevelModule, makeTextNode, makeXSLElement, newPrincipalModule, setTopLevelModule
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface net.sf.saxon.tree.linked.NodeFactory
makeTextNode
-
-
-
-
Constructor Detail
-
StyleNodeFactoryPE
public StyleNodeFactoryPE(Configuration config, Compilation compilation)
Create the node factory for representing an XSLT stylesheet as a tree structure- Parameters:
config
- the Saxon configurationcompilation
- the compilation episode (compiling one package)
-
-
Method Detail
-
makeElementNode
public ElementImpl makeElementNode(NodeInfo parent, NodeName elementName, SchemaType elementType, boolean isNilled, AttributeMap attlist, NamespaceMap namespaces, PipelineConfiguration pipe, Location location, int sequence)
Create an Element node. Note, if there is an error detected while constructing the Element, we add the element anyway, and return success, but flag the element with a validation error. This allows us to report more than one error from a single compilation.- Specified by:
makeElementNode
in interfaceNodeFactory
- Overrides:
makeElementNode
in classStyleNodeFactory
- Parameters:
parent
- The parent elementelementName
- The element nameelementType
- The type annotation of the elementisNilled
- true if the element is to be marked as nilledattlist
- The attribute collection, excluding any namespace attributesnamespaces
- in-scope namespace declarations for this elementpipe
- The pipeline configuration (provides access to the error listener and the location provider)location
- Indicates the source document and line number containing the nodesequence
- Sequence number to be assigned to represent document order.- Returns:
- the element node
-
isElementAvailable
public boolean isElementAvailable(java.lang.String uri, java.lang.String localName, boolean instructionsOnly)
Method to support the element-available() function- Overrides:
isElementAvailable
in classStyleNodeFactory
- Parameters:
uri
- the namespace URIlocalName
- the local NameinstructionsOnly
- true if only instructions qualify- Returns:
- true if an extension element of this name is recognized
-
makeAccumulatorManager
public AccumulatorRegistry makeAccumulatorManager()
- Overrides:
makeAccumulatorManager
in classStyleNodeFactory
-
-