public abstract class Function extends Expression
| Constructor and Description |
|---|
Function() |
| Modifier and Type | Method and Description |
|---|---|
void |
callArgVisitors(XPathVisitor visitor)
Call the visitors for the function arguments.
|
void |
callVisitors(XPathVisitor visitor)
This will traverse the hierarchy, calling the visitor for each member.
|
void |
checkNumberArgs(int argNum)
Check that the number of arguments passed to this function is correct.
|
boolean |
deepEquals(Expression expr)
Compare this object with another object and see if they are equal, include the sub heararchy.
|
XObject |
execute(XPathContext xctxt)
Execute an expression in the XPath runtime context, and return the result of the expression.
|
void |
postCompileStep(Compiler compiler)
This function is currently only being used by Position() and Last().
|
protected void |
reportWrongNumberArgs()
Constructs and throws a WrongNumberArgException with the appropriate message for this function
object.
|
void |
setArg(Expression arg,
int argNum)
Set an argument expression for a function.
|
asIterator, asNode, assertion, bool, canTraverseOutsideSubtree, error, execute, execute, execute, exprGetParent, exprSetParent, getColumnNumber, getExpressionOwner, getLineNumber, getPublicId, getSystemId, isSameClass, isStableNumber, numpublic void setArg(Expression arg, int argNum) throws WrongNumberArgsException
arg - non-null expression that represents the argument.argNum - The argument number index.WrongNumberArgsException - If the argNum parameter is beyond what is specified for this
function.public void checkNumberArgs(int argNum)
throws WrongNumberArgsException
argNum - The number of arguments that is being passed to the function.WrongNumberArgsException - if anyprotected void reportWrongNumberArgs()
throws WrongNumberArgsException
WrongNumberArgsException - if anypublic XObject execute(XPathContext xctxt) throws TransformerException
execute in class Expressionxctxt - The XPath runtime context.XObject.TransformerException - if a runtime exception occurs.public void callArgVisitors(XPathVisitor visitor)
public void callVisitors(XPathVisitor visitor)
visitor - The visitor whose appropriate method will be called.public boolean deepEquals(Expression expr)
deepEquals in class Expressionexpr - Another expression object.public void postCompileStep(Compiler compiler)
Copyright © 2022–2023 HtmlUnit. All rights reserved.