spoon.reflect.code.CtVariableWrite Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spoon-core Show documentation
Show all versions of spoon-core Show documentation
Spoon is a tool for meta-programming, analysis and transformation of Java programs.
The newest version!
package spoon.reflect.code;
/**
* This code element defines a write to a variable.
*
* In Java, it is a usage of a variable inside an assignment. For example,
* variable = "new value";
*
* @param
* type of the variable
*/
public interface CtVariableWrite extends CtVariableAccess {
}