Package spoon.reflect.code
Interface CtRHSReceiver<A>
-
- All Known Subinterfaces:
CtAssignment<T,A>
,CtEnumValue<T>
,CtField<T>
,CtLocalVariable<T>
,CtOperatorAssignment<T,A>
- All Known Implementing Classes:
CtAssignmentImpl
,CtEnumValueImpl
,CtFieldImpl
,CtLocalVariableImpl
,CtOperatorAssignmentImpl
public interface CtRHSReceiver<A>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CtExpression<A>
getAssignment()
Returns the right-hand side of the "=" operator.<T extends CtRHSReceiver<A>>
TsetAssignment(CtExpression<A> assignment)
Sets the right-hand side expression (RHS) of the "=" operator.
-
-
-
Method Detail
-
getAssignment
CtExpression<A> getAssignment()
Returns the right-hand side of the "=" operator.
-
setAssignment
<T extends CtRHSReceiver<A>> T setAssignment(CtExpression<A> assignment)
Sets the right-hand side expression (RHS) of the "=" operator.
-
-