public class Stylesheet extends Object
Stylesheet
implements an XSLT stylesheet such that rules can
be added to the stylesheet and the stylesheet can be applied to a source
document or node.
Constructor and Description |
---|
Stylesheet()
Creates a new empty stylesheet.
|
Modifier and Type | Method and Description |
---|---|
void |
addRule(Rule rule)
Add a rule to this stylesheet.
|
void |
applyTemplates(Document document)
If input is a
Node , this will processes all of the
children of that node. |
void |
applyTemplates(Document document,
String mode)
Processes the input object in the given mode.
|
void |
applyTemplates(Element element)
If input is a
Node , this will processes all of the
children of that node. |
void |
applyTemplates(Element element,
String mode)
Processes the input object in the given mode.
|
void |
applyTemplates(List<? extends Node> list,
String mode)
Processes the input object in the given mode.
|
void |
applyTemplates(List<Node> list)
If input is a
Node , this will processes all of the
children of that node. |
void |
applyTemplates(Node node)
If input is a
Node , this will processes all of the
children of that node. |
void |
applyTemplates(Node node,
String mode)
Processes the input object in the given mode.
|
void |
applyTemplates(Object input,
XPath xpath)
Processes the result of the xpath expression.
|
void |
applyTemplates(Object input,
XPath xpath,
String mode)
Processes the result of the xpath expression in the given mode.
|
void |
clear() |
String |
getModeName()
DOCUMENT ME!
|
Action |
getValueOfAction()
DOCUMENT ME!
|
void |
removeRule(Rule rule)
Removes the specified rule from this stylesheet.
|
void |
run(List<Node> list) |
void |
run(List<Node> list,
String mode) |
void |
run(Node node) |
void |
run(Node node,
String mode) |
void |
setModeName(String modeName)
Sets the name of the mode that the stylesheet uses by default.
|
void |
setValueOfAction(Action valueOfAction)
Sets the default value-of action which is used in the default rules for
the pattern "text()|@"
|
public void addRule(Rule rule)
rule
- the rule to addpublic void removeRule(Rule rule)
rule
- the rule to removepublic void applyTemplates(Object input, XPath xpath) throws Exception
input
- the input objectxpath
- the xpath expressionException
- if something goes wrongpublic void applyTemplates(Object input, XPath xpath, String mode) throws Exception
input
- the input objectxpath
- the xpath expressionmode
- the modeException
- if something goes wrongpublic void applyTemplates(Node node) throws Exception
Node
, this will processes all of the
children of that node. If input is a List
of
Nodes
s, these nodes will be iterated and all children of
each node will be processed.node
- the input objectException
- if something goes wrongpublic void applyTemplates(Element element) throws Exception
Node
, this will processes all of the
children of that node. If input is a List
of
Nodes
s, these nodes will be iterated and all children of
each node will be processed.element
- the input objectException
- if something goes wrongpublic void applyTemplates(Document document) throws Exception
Node
, this will processes all of the
children of that node. If input is a List
of
Nodes
s, these nodes will be iterated and all children of
each node will be processed.document
- the input objectException
- if something goes wrongpublic void applyTemplates(List<Node> list) throws Exception
Node
, this will processes all of the
children of that node. If input is a List
of
Nodes
s, these nodes will be iterated and all children of
each node will be processed.list
- the input objectException
- if something goes wrongpublic void applyTemplates(Node node, String mode) throws Exception
Node
, this will processes all of the children of that
node. If input is a List
of Nodes
s, these
nodes will be iterated and all children of each node will be processed.node
- the input objectmode
- the modeException
- if something goes wrongpublic void applyTemplates(Element element, String mode) throws Exception
Node
, this will processes all of the children of that
node. If input is a List
of Nodes
s, these
nodes will be iterated and all children of each node will be processed.element
- the input objectmode
- the modeException
- if something goes wrongpublic void applyTemplates(Document document, String mode) throws Exception
Node
, this will processes all of the children of that
node. If input is a List
of Nodes
s, these
nodes will be iterated and all children of each node will be processed.document
- the input objectmode
- the modeException
- if something goes wrongpublic void applyTemplates(List<? extends Node> list, String mode) throws Exception
Node
, this will processes all of the children of that
node. If input is a List
of Nodes
s, these
nodes will be iterated and all children of each node will be processed.list
- list of Elements or Documentsmode
- the modeException
- if something goes wrongpublic void clear()
public String getModeName()
public void setModeName(String modeName)
modeName
- DOCUMENT ME!public Action getValueOfAction()
public void setValueOfAction(Action valueOfAction)
valueOfAction
- DOCUMENT ME!Copyright © 2023. All rights reserved.