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