spoon.support.reflect.reference.CtUnboundVariableReferenceImpl 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.support.reflect.reference;
import spoon.reflect.reference.CtUnboundVariableReference;
import spoon.reflect.visitor.CtVisitor;
/** represents a reference to an unbound field (used when no full classpath is available */
public class CtUnboundVariableReferenceImpl
extends CtVariableReferenceImpl
implements CtUnboundVariableReference {
private static final long serialVersionUID = -932423216089690817L;
@Override
public void accept(CtVisitor visitor) {
visitor.visitCtUnboundVariableReference(this);
}
}