All Downloads are FREE. Search and download functionalities are using the official Maven repository.

spoon.support.reflect.reference.CtUnboundVariableReferenceImpl Maven / Gradle / Ivy

Go to download

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);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy