Package net.sf.saxon.trans.rules
Class FailRuleSet
java.lang.Object
net.sf.saxon.trans.rules.FailRuleSet
- All Implemented Interfaces:
ContextOriginator
,BuiltInRuleSet
The built-in rule set introduced in XSLT 3.0, which raises an error when there is no user-supplied
template rule that matches a node.
-
Method Summary
Modifier and TypeMethodDescriptiongetActionForParentNodes
(int nodeKind) Get the default action for unmatched nodesstatic FailRuleSet
Get the singleton instance of this classgetName()
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 Details
-
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- Throws:
XPathException
- if any dynamic error occurs
-
getName
Identify this built-in rule set- Specified by:
getName
in interfaceBuiltInRuleSet
- Returns:
- "fail"
-
getActionForParentNodes
Get the default action for unmatched nodes- Specified by:
getActionForParentNodes
in interfaceBuiltInRuleSet
- Parameters:
nodeKind
- the node kind- Returns:
- the default action for unmatched element nodes: one of DEEP_COPY, APPLY_TEMPLATES, DEEP_SKIP, FAIL
-