Package org.eclipse.cdt.core.dom.ast
Interface IQualifierType
-
- All Superinterfaces:
java.lang.Cloneable,IType
- All Known Subinterfaces:
ICQualifierType,IGPPQualifierType
public interface IQualifierType extends IType
Interface used to qualify types.- Restriction:
- This interface is not intended to be implemented by clients.
- Restriction:
- This interface is not intended to be extended by clients.
-
-
Field Summary
-
Fields inherited from interface org.eclipse.cdt.core.dom.ast.IType
EMPTY_TYPE_ARRAY, TYPE_MATCHER
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ITypegetType()Returns the type that this is qualifyingbooleanisConst()Returns whether this is a const typebooleanisVolatile()Returns whether this is a volatile type-
Methods inherited from interface org.eclipse.cdt.core.dom.ast.IType
clone, isSameType
-
-
-
-
Method Detail
-
isConst
boolean isConst()
Returns whether this is a const type
-
isVolatile
boolean isVolatile()
Returns whether this is a volatile type
-
getType
IType getType()
Returns the type that this is qualifying
-
-