use of spoon.support.visitor.TypeReferenceScanner in project spoon by INRIA.
the class CtElementImpl method getReferencedTypes.
@DerivedProperty
public Set<CtTypeReference<?>> getReferencedTypes() {
TypeReferenceScanner s = new TypeReferenceScanner();
s.scan(this);
return s.getReferences();
}
Aggregations