1 package spoon.reflect.code;2 3 /**4 * This code element defines an self-operated assignement such as += or *=.5 */6 public interface CtOperatorAssignment<T, A extends T> extends7 CtAssignment<T, A> {8 /**9 * Sets the operator kind.10 */11 void setKind(BinaryOperatorKind kind);12 13 /**14 * Gets the operator kind.15 */16 BinaryOperatorKind getKind();17 }18