Package gw.lang.parser.expressions
Interface ITypeVariableDefinition
-
- All Known Implementing Classes:
TypeVariableDefinition,TypeVariableDefinitionImpl
public interface ITypeVariableDefinition
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ITypeVariableDefinitionclone()ITypegetBoundingType()ITypegetEnclosingType()java.lang.StringgetName()ITypeVariableTypegetType()IGenericTypeVariablegetTypeVar()VariancegetVariance()voidsetEnclosingType(IType enclosingType)voidsetVariance(Variance variance)
-
-
-
Method Detail
-
getEnclosingType
IType getEnclosingType()
-
setEnclosingType
void setEnclosingType(IType enclosingType)
-
getName
java.lang.String getName()
-
getTypeVar
IGenericTypeVariable getTypeVar()
-
getType
ITypeVariableType getType()
-
getBoundingType
IType getBoundingType()
-
clone
ITypeVariableDefinition clone()
-
getVariance
Variance getVariance()
-
setVariance
void setVariance(Variance variance)
-
-