本文整理汇总了Java中org.eclipse.jdt.internal.corext.refactoring.typeconstraints.types.GenericType类的典型用法代码示例。如果您正苦于以下问题:Java GenericType类的具体用法?Java GenericType怎么用?Java GenericType使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
GenericType类属于org.eclipse.jdt.internal.corext.refactoring.typeconstraints.types包,在下文中一共展示了GenericType类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: makeFixedElementVariables
import org.eclipse.jdt.internal.corext.refactoring.typeconstraints.types.GenericType; //导入依赖的package包/类
public void makeFixedElementVariables(ConstraintVariable2 expressionCv, TType type) {
if (isAGenericType(type)) {
GenericType genericType = (GenericType) type.getTypeDeclaration();
TType[] typeParameters = genericType.getTypeParameters();
TType[] typeArguments = null;
if (type.isParameterizedType()) typeArguments = ((ParameterizedType) type).getTypeArguments();
for (int i = 0; i < typeParameters.length; i++) {
TypeVariable typeVariable = (TypeVariable) typeParameters[i];
CollectionElementVariable2 elementCv = makeElementVariable(expressionCv, typeVariable, i);
TType referenceTypeArgument;
if (typeArguments == null) { // raw type
continue; // do not consider
} else {
referenceTypeArgument = typeArguments[i];
}
createEqualsConstraint(elementCv, makeImmutableTypeVariable(referenceTypeArgument));
// if (typeVariable.getBounds().length != 0) {
// //TODO: create subtype constraints for bounds
// }
}
}
makeFixedElementVariablesFromSupertypes(expressionCv, type.getTypeDeclaration());
}
示例2: makeFixedElementVariables
import org.eclipse.jdt.internal.corext.refactoring.typeconstraints.types.GenericType; //导入依赖的package包/类
public void makeFixedElementVariables(ConstraintVariable2 expressionCv, TType type) {
if (isAGenericType(type)) {
GenericType genericType= (GenericType) type.getTypeDeclaration();
TType[] typeParameters= genericType.getTypeParameters();
TType[] typeArguments= null;
if (type.isParameterizedType())
typeArguments= ((ParameterizedType) type).getTypeArguments();
for (int i= 0; i < typeParameters.length; i++) {
TypeVariable typeVariable= (TypeVariable) typeParameters[i];
CollectionElementVariable2 elementCv= makeElementVariable(expressionCv, typeVariable, i);
TType referenceTypeArgument;
if (typeArguments == null) { // raw type
continue; // do not consider
} else {
referenceTypeArgument= typeArguments[i];
}
createEqualsConstraint(elementCv, makeImmutableTypeVariable(referenceTypeArgument));
// if (typeVariable.getBounds().length != 0) {
// //TODO: create subtype constraints for bounds
// }
}
}
makeFixedElementVariablesFromSupertypes(expressionCv, type.getTypeDeclaration());
}
示例3: makeFixedSupertypeElementVariables
import org.eclipse.jdt.internal.corext.refactoring.typeconstraints.types.GenericType; //导入依赖的package包/类
private void makeFixedSupertypeElementVariables(ConstraintVariable2 expressionCv, TType supertype) {
if (supertype.isParameterizedType() || supertype.isRawType()) {
TType[] typeArguments= null;
if (supertype.isParameterizedType())
typeArguments= ((ParameterizedType) supertype).getTypeArguments();
TypeVariable[] typeParameters= ((GenericType) supertype.getTypeDeclaration()).getTypeParameters();
for (int i= 0; i < typeParameters.length; i++) {
TypeVariable typeParameter= typeParameters[i];
TType referenceTypeArgument;
if (typeArguments == null) { // raw type
continue; // do not consider
} else {
referenceTypeArgument= typeArguments[i];
}
if (referenceTypeArgument.isTypeVariable()) {
CollectionElementVariable2 referenceTypeArgumentCv= getElementVariable(expressionCv, (TypeVariable) referenceTypeArgument);
setElementVariable(expressionCv, referenceTypeArgumentCv, typeParameter);
} else {
CollectionElementVariable2 elementCv= makeElementVariable(expressionCv, typeParameter, CollectionElementVariable2.NOT_DECLARED_TYPE_VARIABLE_INDEX);
createEqualsConstraint(elementCv, makeImmutableTypeVariable(referenceTypeArgument));
}
}
}
makeFixedElementVariablesFromSupertypes(expressionCv, supertype);
}
示例4: makeElementVariables
import org.eclipse.jdt.internal.corext.refactoring.typeconstraints.types.GenericType; //导入依赖的package包/类
public void makeElementVariables(ConstraintVariable2 expressionCv, TType type) {
if (isAGenericType(type)) {
GenericType genericType = (GenericType) type.getTypeDeclaration();
TType[] typeParameters = genericType.getTypeParameters();
for (int i = 0; i < typeParameters.length; i++) {
TypeVariable typeVariable = (TypeVariable) typeParameters[i];
makeElementVariable(expressionCv, typeVariable, i);
if (typeVariable.getBounds().length != 0) {
// TODO: create subtype constraints for bounds
}
}
}
makeElementVariablesFromSupertypes(expressionCv, type.getTypeDeclaration());
}
示例5: makeSupertypeElementVariables
import org.eclipse.jdt.internal.corext.refactoring.typeconstraints.types.GenericType; //导入依赖的package包/类
private void makeSupertypeElementVariables(ConstraintVariable2 expressionCv, TType supertype) {
if (supertype.isParameterizedType() || supertype.isRawType()) {
TType[] typeArguments = null;
if (supertype.isParameterizedType()) {
typeArguments = ((ParameterizedType) supertype).getTypeArguments();
}
TypeVariable[] typeParameters =
((GenericType) supertype.getTypeDeclaration()).getTypeParameters();
for (int i = 0; i < typeParameters.length; i++) {
TypeVariable typeParameter = typeParameters[i];
TType referenceTypeArgument;
if (typeArguments == null) { // raw type
referenceTypeArgument = typeParameter.getErasure();
} else {
referenceTypeArgument = typeArguments[i];
}
if (referenceTypeArgument.isTypeVariable()) {
CollectionElementVariable2 referenceTypeArgumentCv =
getElementVariable(expressionCv, (TypeVariable) referenceTypeArgument);
if (referenceTypeArgumentCv != null) {
setElementVariable(expressionCv, referenceTypeArgumentCv, typeParameter);
continue;
}
}
makeElementVariable(
expressionCv,
typeParameter,
CollectionElementVariable2.NOT_DECLARED_TYPE_VARIABLE_INDEX);
}
}
makeElementVariablesFromSupertypes(expressionCv, supertype);
}
示例6: makeFixedSupertypeElementVariables
import org.eclipse.jdt.internal.corext.refactoring.typeconstraints.types.GenericType; //导入依赖的package包/类
private void makeFixedSupertypeElementVariables(
ConstraintVariable2 expressionCv, TType supertype) {
if (supertype.isParameterizedType() || supertype.isRawType()) {
TType[] typeArguments = null;
if (supertype.isParameterizedType())
typeArguments = ((ParameterizedType) supertype).getTypeArguments();
TypeVariable[] typeParameters =
((GenericType) supertype.getTypeDeclaration()).getTypeParameters();
for (int i = 0; i < typeParameters.length; i++) {
TypeVariable typeParameter = typeParameters[i];
TType referenceTypeArgument;
if (typeArguments == null) { // raw type
continue; // do not consider
} else {
referenceTypeArgument = typeArguments[i];
}
if (referenceTypeArgument.isTypeVariable()) {
CollectionElementVariable2 referenceTypeArgumentCv =
getElementVariable(expressionCv, (TypeVariable) referenceTypeArgument);
setElementVariable(expressionCv, referenceTypeArgumentCv, typeParameter);
} else {
CollectionElementVariable2 elementCv =
makeElementVariable(
expressionCv,
typeParameter,
CollectionElementVariable2.NOT_DECLARED_TYPE_VARIABLE_INDEX);
createEqualsConstraint(elementCv, makeImmutableTypeVariable(referenceTypeArgument));
}
}
}
makeFixedElementVariablesFromSupertypes(expressionCv, supertype);
}
示例7: makeElementVariables
import org.eclipse.jdt.internal.corext.refactoring.typeconstraints.types.GenericType; //导入依赖的package包/类
public void makeElementVariables(ConstraintVariable2 expressionCv, TType type) {
if (isAGenericType(type)) {
GenericType genericType= (GenericType) type.getTypeDeclaration();
TType[] typeParameters= genericType.getTypeParameters();
for (int i= 0; i < typeParameters.length; i++) {
TypeVariable typeVariable= (TypeVariable) typeParameters[i];
makeElementVariable(expressionCv, typeVariable, i);
if (typeVariable.getBounds().length != 0) {
//TODO: create subtype constraints for bounds
}
}
}
makeElementVariablesFromSupertypes(expressionCv, type.getTypeDeclaration());
}
示例8: makeSupertypeElementVariables
import org.eclipse.jdt.internal.corext.refactoring.typeconstraints.types.GenericType; //导入依赖的package包/类
private void makeSupertypeElementVariables(ConstraintVariable2 expressionCv, TType supertype) {
if (supertype.isParameterizedType() || supertype.isRawType()) {
TType[] typeArguments= null;
if (supertype.isParameterizedType()) {
typeArguments= ((ParameterizedType) supertype).getTypeArguments();
}
TypeVariable[] typeParameters= ((GenericType) supertype.getTypeDeclaration()).getTypeParameters();
for (int i= 0; i < typeParameters.length; i++) {
TypeVariable typeParameter= typeParameters[i];
TType referenceTypeArgument;
if (typeArguments == null) { // raw type
referenceTypeArgument= typeParameter.getErasure();
} else {
referenceTypeArgument= typeArguments[i];
}
if (referenceTypeArgument.isTypeVariable()) {
CollectionElementVariable2 referenceTypeArgumentCv= getElementVariable(expressionCv, (TypeVariable) referenceTypeArgument);
if (referenceTypeArgumentCv != null) {
setElementVariable(expressionCv, referenceTypeArgumentCv, typeParameter);
continue;
}
}
makeElementVariable(expressionCv, typeParameter, CollectionElementVariable2.NOT_DECLARED_TYPE_VARIABLE_INDEX);
}
}
makeElementVariablesFromSupertypes(expressionCv, supertype);
}
示例9: ParametricStructure
import org.eclipse.jdt.internal.corext.refactoring.typeconstraints.types.GenericType; //导入依赖的package包/类
public ParametricStructure(GenericType base) {
if (base == null) throw new NullPointerException();
fBase = base;
fParameters = new ParametricStructure[base.getTypeParameters().length];
}
示例10: getBase
import org.eclipse.jdt.internal.corext.refactoring.typeconstraints.types.GenericType; //导入依赖的package包/类
public GenericType getBase() {
return fBase;
}
示例11: newParametricType
import org.eclipse.jdt.internal.corext.refactoring.typeconstraints.types.GenericType; //导入依赖的package包/类
private ParametricStructure newParametricType(TType varType) {
// TODO: create CollectionElementVariable2s if necessary?
GenericType genericType = (GenericType) varType.getTypeDeclaration();
return new ParametricStructure(genericType);
}
示例12: getElementVariables
import org.eclipse.jdt.internal.corext.refactoring.typeconstraints.types.GenericType; //导入依赖的package包/类
private Collection<CollectionElementVariable2> getElementVariables(
GenericType base, ConstraintVariable2 parent) {
fTCModel.makeElementVariables(parent, base);
return fTCModel.getElementVariables(parent).values();
}
示例13: ParametricStructure
import org.eclipse.jdt.internal.corext.refactoring.typeconstraints.types.GenericType; //导入依赖的package包/类
public ParametricStructure(GenericType base) {
if (base == null)
throw new NullPointerException();
fBase= base;
fParameters= new ParametricStructure[base.getTypeParameters().length];
}
示例14: getBase
import org.eclipse.jdt.internal.corext.refactoring.typeconstraints.types.GenericType; //导入依赖的package包/类
public GenericType getBase() {
return fBase;
}
示例15: newParametricType
import org.eclipse.jdt.internal.corext.refactoring.typeconstraints.types.GenericType; //导入依赖的package包/类
private ParametricStructure newParametricType(TType varType) {
//TODO: create CollectionElementVariable2s if necessary?
GenericType genericType= (GenericType) varType.getTypeDeclaration();
return new ParametricStructure(genericType);
}