本文整理汇总了Java中com.sun.tools.javac.code.Type.TypeVar方法的典型用法代码示例。如果您正苦于以下问题:Java Type.TypeVar方法的具体用法?Java Type.TypeVar怎么用?Java Type.TypeVar使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.sun.tools.javac.code.Type
的用法示例。
在下文中一共展示了Type.TypeVar方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getRealType
import com.sun.tools.javac.code.Type; //导入方法依赖的package包/类
private Symbol.TypeSymbol getRealType(Type type) {
//List<String> to return String
if (type.allparams().size()>0)
return getRealType(type.allparams().get(0));
if (type instanceof Type.TypeVar){
return daoEnv.getRealTypeByTypeParameter(type);
}
return type.tsym;
}
示例2: visitTypeVar
import com.sun.tools.javac.code.Type; //导入方法依赖的package包/类
@Override
public Type visitTypeVar( Type.TypeVar t, Void s )
{
Type bound = eraseBound( t, t.getUpperBound() );
Type lower = eraseBound( t, t.lower );
if( bound == t.getUpperBound() && lower == t.lower )
{
return t;
}
return new Type.TypeVar( t.tsym, bound, lower );
}
示例3: getBound
import com.sun.tools.javac.code.Type; //导入方法依赖的package包/类
public static TypeMirror getBound(WildcardType wildcardType) {
Type.TypeVar bound = ((Type.WildcardType)wildcardType).bound;
return bound != null ? bound.bound : null;
}
示例4: visitTypeVar
import com.sun.tools.javac.code.Type; //导入方法依赖的package包/类
@Override
public R visitTypeVar(Type.TypeVar t, P p) {
return defaultAction(t, p);
}