Package org.eclipse.cdt.core.dom.ast
Interface IQualifierType
-
- 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 IType
getType()
Returns the type that this is qualifyingboolean
isConst()
Returns whether this is a const typeboolean
isVolatile()
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
-
-