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 ITypeVariableDefinition
clone()
IType
getBoundingType()
IType
getEnclosingType()
String
getName()
ITypeVariableType
getType()
IGenericTypeVariable
getTypeVar()
Variance
getVariance()
void
setEnclosingType(IType enclosingType)
void
setVariance(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)
-
-