Package org.apache.dvsl
Interface TransformTool
-
- All Known Implementing Classes:
Transformer
public interface TransformToolThis is the tool interface exposed to the stylesheet.- Author:
- Geir Magnusson Jr.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringapplyTemplates()java.lang.StringapplyTemplates(java.lang.String xpath)Applies templates in the current stylesheet to the nodeset returned by the XPath expressionjava.lang.StringapplyTemplates(DVSLNode node)java.lang.StringapplyTemplates(DVSLNode node, java.lang.String xpath)java.lang.Stringcopy()java.lang.Objectget(java.lang.String key)java.lang.ObjectgetAppValue(java.lang.Object key)java.lang.ObjectputAppValue(java.lang.Object key, java.lang.Object value)
-
-
-
Method Detail
-
applyTemplates
java.lang.String applyTemplates(java.lang.String xpath) throws java.lang.ExceptionApplies templates in the current stylesheet to the nodeset returned by the XPath expression
- Parameters:
xpath- XPath expression to select nodes- Returns:
- The rendered result
- Throws:
java.lang.Exception
-
applyTemplates
java.lang.String applyTemplates(DVSLNode node) throws java.lang.Exception
- Throws:
java.lang.Exception
-
applyTemplates
java.lang.String applyTemplates(DVSLNode node, java.lang.String xpath) throws java.lang.Exception
- Throws:
java.lang.Exception
-
applyTemplates
java.lang.String applyTemplates() throws java.lang.Exception- Throws:
java.lang.Exception
-
copy
java.lang.String copy() throws java.lang.Exception- Throws:
java.lang.Exception
-
get
java.lang.Object get(java.lang.String key)
-
getAppValue
java.lang.Object getAppValue(java.lang.Object key)
-
putAppValue
java.lang.Object putAppValue(java.lang.Object key, java.lang.Object value)
-
-