1 package spoon.reflect.code;2 3 import spoon.reflect.declaration.CtVariable;4 import spoon.reflect.reference.CtLocalVariableReference;5 6 /**7 * This code element defines a local variable definition (within an executable8 * body).9 * 10 * @param <T>11 * type of the variable12 * @see spoon.reflect.declaration.CtExecutable13 */14 public interface CtLocalVariable<T> extends CtStatement, CtVariable<T> {15 /*16 * (non-Javadoc)17 * 18 * @see spoon.reflect.declaration.CtNamedElement#getReference()19 */20 CtLocalVariableReference<T> getReference();21 }22