| spoon.reflect.code.CtAssignment
CtAssignment | public interface CtAssignment extends CtStatement,CtExpression<T>(Code) | | This code element defines an assignment.
< Parameters: T - >type of assigned expression< Parameters: A - >type of expression to assign, it should extends |
getAssigned | CtExpression<T> getAssigned()(Code) | | Returns the assigned expression (a variable, an array access...).
|
getAssignment | CtExpression<A> getAssignment()(Code) | | Returns the assignment that is set to the assigned expression.
|
setAssigned | void setAssigned(CtExpression<T> assigned)(Code) | | Sets the assigned expression.
|
setAssignment | void setAssignment(CtExpression<A> assignment)(Code) | | Sets the expression that is set to the assigned expression.
|
|
|