Class MethodInvocationDef
- java.lang.Object
-
- com.thoughtworks.qdox.parser.expression.ExpressionDef
-
- com.thoughtworks.qdox.parser.expression.MethodInvocationDef
-
- All Implemented Interfaces:
ElemValueDef
public class MethodInvocationDef extends ExpressionDef
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.List<ExpressionDef>
arguments
private java.lang.String
methodName
-
Constructor Summary
Constructors Constructor Description MethodInvocationDef(java.lang.String methodName, java.util.List<ExpressionDef> arguments)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<ExpressionDef>
getArguments()
java.lang.String
getMethodName()
<U> U
transform(ElemValueTransformer<U> transformer)
-
-
-
Field Detail
-
methodName
private java.lang.String methodName
-
arguments
private java.util.List<ExpressionDef> arguments
-
-
Constructor Detail
-
MethodInvocationDef
public MethodInvocationDef(java.lang.String methodName, java.util.List<ExpressionDef> arguments)
-
-
Method Detail
-
getMethodName
public java.lang.String getMethodName()
-
getArguments
public java.util.List<ExpressionDef> getArguments()
-
transform
public <U> U transform(ElemValueTransformer<U> transformer)
-
-