Package org.exolab.adaptx.xslt
Interface Conditional
-
- All Known Implementing Classes:
XSLIf
,XSLOtherwise
public interface Conditional
Represents a an interface for conditional based xsl elements such as xsl:if and xsl:choose{xsl:when}- Author:
- Keith Visco
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BooleanResult
evaluate(XPathContext context)
Evaluates this Conditional using the given XPathContext.
-
-
-
Method Detail
-
evaluate
BooleanResult evaluate(XPathContext context) throws XPathException
Evaluates this Conditional using the given XPathContext.- Parameters:
context
- the XPathContext to evaluate this conditional with.- Returns:
- the resulting BooleanResult
- Throws:
XPathException
-
-