Package net.sf.saxon.trans.rules
Class TextOnlyCopyRuleSet
- java.lang.Object
-
- net.sf.saxon.trans.rules.TextOnlyCopyRuleSet
-
- All Implemented Interfaces:
ContextOriginator
,BuiltInRuleSet
public class TextOnlyCopyRuleSet extends java.lang.Object implements BuiltInRuleSet
The built-in rule set used for 1.0 and 2.0, which for document and element nodes does an apply-templates to children, and for text nodes and attribute nodes copies the node.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description BuiltInRules[]
getActionForParentNodes(int nodeKind)
Get the default action for unmatched nodesstatic TextOnlyCopyRuleSet
getInstance()
Get the singleton instance of this classjava.lang.String
getName()
Identify this built-in rule setvoid
process(Item item, ParameterSet parameters, ParameterSet tunnelParams, Outputter output, XPathContext context, Location locationId)
Perform the built-in template action for a given item.
-
-
-
Method Detail
-
getInstance
public static TextOnlyCopyRuleSet getInstance()
Get the singleton instance of this class- Returns:
- the singleton instance
-
process
public void process(Item item, ParameterSet parameters, ParameterSet tunnelParams, Outputter output, XPathContext context, Location locationId) throws XPathException
Perform the built-in template action for a given item.- Specified by:
process
in interfaceBuiltInRuleSet
- Parameters:
item
- the item to be processedparameters
- the parameters supplied to apply-templatestunnelParams
- the tunnel parameters to be passed throughoutput
- the destination for the resultcontext
- the dynamic evaluation contextlocationId
- location of the instruction (apply-templates, apply-imports etc) that caused the built-in template to be invoked- Throws:
XPathException
- if any dynamic error occurs
-
getName
public java.lang.String getName()
Identify this built-in rule set- Specified by:
getName
in interfaceBuiltInRuleSet
- Returns:
- "text-only"
-
getActionForParentNodes
public BuiltInRules[] getActionForParentNodes(int nodeKind)
Get the default action for unmatched nodes- Specified by:
getActionForParentNodes
in interfaceBuiltInRuleSet
- Parameters:
nodeKind
- the node kind- Returns:
- the default action for unmatched nodes: one of DEEP_COPY, SHALLOW_SKIP, DEEP_SKIP, FAIL, etc
-
-