use of spoon.support.reflect.declaration.CtTypeParameterImpl in project spoon by INRIA.
the class DefaultCoreFactory method createTypeParameter.
@Override
public CtTypeParameter createTypeParameter() {
CtTypeParameter e = new CtTypeParameterImpl();
e.setFactory(getMainFactory());
return e;
}
Aggregations