Package net.sf.saxon.style
Class StyleNodeFactory
- java.lang.Object
- 
- net.sf.saxon.style.StyleNodeFactory
 
- 
- All Implemented Interfaces:
- NodeFactory
 - Direct Known Subclasses:
- StyleNodeFactoryPE
 
 public class StyleNodeFactory extends java.lang.Object implements NodeFactory Class StyleNodeFactory.
 A Factory for nodes in the stylesheet tree.
 Currently only allows Element nodes to be user-constructed.
- 
- 
Field SummaryFields Modifier and Type Field Description protected Configurationconfigprotected NamePoolnamePool
 - 
Constructor SummaryConstructors Constructor Description StyleNodeFactory(Configuration config, Compilation compilation)Create the node factory for representing an XSLT stylesheet as a tree structure
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description CompilationgetCompilation()ConfigurationgetConfiguration()booleanisElementAvailable(java.lang.String uri, java.lang.String localName, boolean instructionsOnly)Method to support the element-available() functionbooleanisTopLevelModule()Ask whether this is the top-level module of a packageAccumulatorRegistrymakeAccumulatorManager()ElementImplmakeElementNode(NodeInfo parent, NodeName elemName, SchemaType elemType, boolean isNilled, AttributeMap attlist, NamespaceMap namespaces, PipelineConfiguration pipe, Location location, int sequence)Create an Element node.TextImplmakeTextNode(NodeInfo parent, java.lang.CharSequence content)Make a text nodeprotected StyleElementmakeXSLElement(int f, NodeImpl parent)Make an XSL element nodePrincipalStylesheetModulenewPrincipalModule(XSLPackage node)Create a stylesheet packagevoidsetTopLevelModule(boolean topLevelModule)Say that this is the top-level module of a package
 
- 
- 
- 
Field Detail- 
configprotected Configuration config 
 - 
namePoolprotected NamePool namePool 
 
- 
 - 
Constructor Detail- 
StyleNodeFactorypublic StyleNodeFactory(Configuration config, Compilation compilation) Create the node factory for representing an XSLT stylesheet as a tree structure- Parameters:
- config- the Saxon configuration
- compilation- the compilation episode (compiling one package)
 
 
- 
 - 
Method Detail- 
setTopLevelModulepublic void setTopLevelModule(boolean topLevelModule) Say that this is the top-level module of a package- Parameters:
- topLevelModule- true if this stylesheet module is the top level of a package; false if it is included or imported
 
 - 
isTopLevelModulepublic boolean isTopLevelModule() Ask whether this is the top-level module of a package- Returns:
- true if this stylesheet module is the top level of a package; false if it is included or imported
 
 - 
getCompilationpublic Compilation getCompilation() 
 - 
getConfigurationpublic Configuration getConfiguration() 
 - 
makeElementNodepublic ElementImpl makeElementNode(NodeInfo parent, NodeName elemName, SchemaType elemType, 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:
- makeElementNodein interface- NodeFactory
- Parameters:
- parent- The parent element
- elemName- The element name
- elemType- The type annotation of the element
- isNilled- true if the element is to be marked as nilled
- attlist- The attribute collection, excluding any namespace attributes
- namespaces- in-scope namespace declarations for this element
- pipe- The pipeline configuration (provides access to the error listener and the location provider)
- location- Indicates the source document and line number containing the node
- sequence- Sequence number to be assigned to represent document order.
- Returns:
- the element node
 
 - 
makeXSLElementprotected StyleElement makeXSLElement(int f, NodeImpl parent) Make an XSL element node- Parameters:
- f- the fingerprint of the node name
- parent- the parent node
- Returns:
- the constructed element node
 
 - 
makeTextNodepublic TextImpl makeTextNode(NodeInfo parent, java.lang.CharSequence content) Make a text node- Specified by:
- makeTextNodein interface- NodeFactory
- Parameters:
- parent- the parent element
- content- the content of the text node
- Returns:
- the constructed text node
 
 - 
isElementAvailablepublic boolean isElementAvailable(java.lang.String uri, java.lang.String localName, boolean instructionsOnly)Method to support the element-available() function- Parameters:
- uri- the namespace URI
- localName- the local Name
- instructionsOnly- true if only instruction elements qualify
- Returns:
- true if an extension element of this name is recognized
 
 - 
makeAccumulatorManagerpublic AccumulatorRegistry makeAccumulatorManager() 
 - 
newPrincipalModulepublic PrincipalStylesheetModule newPrincipalModule(XSLPackage node) throws XPathException Create a stylesheet package- Parameters:
- node- the XSLPackage element
- Returns:
- a new stylesheet package
- Throws:
- XPathException
 
 
- 
 
-