use of org.eclipse.ceylon.langtools.tools.javac.code.Type.WildcardType in project ceylon by eclipse.
the class JavacType method getLowerBound.
@Override
public TypeMirror getLowerBound() {
if (!lowerBoundSet && type instanceof WildcardType) {
Type bound = ((WildcardType) type).getSuperBound();
if (bound != null) {
lowerBound = new JavacType(bound);
}
lowerBoundSet = true;
}
return lowerBound;
}
Aggregations