本文整理汇总了Java中org.eclipse.jdt.internal.corext.refactoring.typeconstraints.types.AbstractTypeVariable类的典型用法代码示例。如果您正苦于以下问题:Java AbstractTypeVariable类的具体用法?Java AbstractTypeVariable怎么用?Java AbstractTypeVariable使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
AbstractTypeVariable类属于org.eclipse.jdt.internal.corext.refactoring.typeconstraints.types包,在下文中一共展示了AbstractTypeVariable类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: pushSupertypes
import org.eclipse.jdt.internal.corext.refactoring.typeconstraints.types.AbstractTypeVariable; //导入依赖的package包/类
private void pushSupertypes(TType type) {
if (type.isJavaLangObject()) return;
if (type.isTypeVariable() || type.isCaptureType()) {
TType[] bounds = ((AbstractTypeVariable) type).getBounds();
for (int i = 0; i < bounds.length; i++) fWorklist.push(bounds[i].getTypeDeclaration());
} else {
TType superclass = type.getSuperclass();
if (superclass == null) {
if (type.isInterface()) fWorklist.push(type.getEnvironment().getJavaLangObject());
} else {
fWorklist.push(superclass.getTypeDeclaration());
}
TType[] interfaces = type.getInterfaces();
for (int i = 0; i < interfaces.length; i++)
fWorklist.push(interfaces[i].getTypeDeclaration());
}
}
示例2: pushSupertypes
import org.eclipse.jdt.internal.corext.refactoring.typeconstraints.types.AbstractTypeVariable; //导入依赖的package包/类
private void pushSupertypes(TType type) {
if (type.isJavaLangObject())
return;
if (type.isTypeVariable() || type.isCaptureType()) {
TType[] bounds= ((AbstractTypeVariable) type).getBounds();
for (int i= 0; i < bounds.length; i++)
fWorklist.push(bounds[i].getTypeDeclaration());
} else {
TType superclass= type.getSuperclass();
if (superclass == null) {
if (type.isInterface())
fWorklist.push(type.getEnvironment().getJavaLangObject());
} else {
fWorklist.push(superclass.getTypeDeclaration());
}
TType[] interfaces= type.getInterfaces();
for (int i= 0; i < interfaces.length; i++)
fWorklist.push(interfaces[i].getTypeDeclaration());
}
}