Expr
, java.io.Serializable
DefaultFunctionCallExpr
public interface FunctionCallExpr extends Expr
[16] FunctionCall ::= FunctionName '(' ( Argument ( ',' Argument )* )? ')'
Modifier and Type | Method | Description |
---|---|---|
void |
addParameter(Expr parameter) |
Add the next argument to the function.
|
java.lang.String |
getFunctionName() |
Returns the local name of the function.
|
java.util.List |
getParameters() |
Returns the the ordered list of function arguments.
|
java.lang.String |
getPrefix() |
Returns the namespace prefix of the function.
|
java.lang.String getPrefix()
java.lang.String getFunctionName()
void addParameter(Expr parameter)
parameter
- a function argumentjava.util.List getParameters()
Expr
object.Copyright © 2001–2018 Codehaus. All rights reserved.