public interface ArgumentList<T extends Codeable>
Modifier and Type | Method and Description |
---|---|
T |
addArg(boolean value)
Adds the given value to the list of arguments for this method invocation.
|
T |
addArg(double value)
Adds the given value to the list of arguments for this method invocation.
|
T |
addArg(Expression e)
Adds the given expression to the list of arguments for this method
invocation.
|
T |
addArg(float value)
Adds the given value to the list of arguments for this method invocation.
|
T |
addArg(int value)
Adds the given value to the list of arguments for this method invocation.
|
T |
addArg(long value)
Adds the given value to the list of arguments for this method invocation.
|
T |
addArg(String value)
Adds the given value to the list of arguments for this method invocation.
|
T |
addVariableArg(String variableName)
Adds the given variable name to the list of arguments for this method
invocation.
|
List<Expression> |
getArgs()
Gets the list of arguments as an list of
Expression . |
void |
removeArg(int index)
Removes the element with the specified index from the list of arguments.
|
T addArg(boolean value)
T addArg(double value)
T addArg(Expression e)
T addArg(float value)
T addArg(int value)
T addArg(long value)
T addArg(String value)
T addVariableArg(String variableName)
List<Expression> getArgs()
Expression
.void removeArg(int index)
Copyright © 2000–2018 jenesis4java. All rights reserved.