Package org.eclipse.cdt.core.dom.ast.cpp
Interface ICPPTemplateTypeParameter
-
- All Superinterfaces:
Cloneable
,org.eclipse.core.runtime.IAdaptable
,IBinding
,ICPPBinding
,ICPPTemplateParameter
,IType
public interface ICPPTemplateTypeParameter extends ICPPTemplateParameter, IType
- 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.IBinding
EMPTY_BINDING_ARRAY
-
Fields inherited from interface org.eclipse.cdt.core.dom.ast.cpp.ICPPTemplateParameter
EMPTY_TEMPLATE_PARAMETER_ARRAY
-
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
getDefault()
The default type for this parameter.boolean
isSameType(IType type)
Types containing template parameters need to be compared even before it is known to which binding the template parameter belongs to.-
Methods inherited from interface org.eclipse.cdt.core.dom.ast.IBinding
getLinkage, getName, getNameCharArray, getOwner, getScope
-
Methods inherited from interface org.eclipse.cdt.core.dom.ast.cpp.ICPPBinding
getQualifiedName, getQualifiedNameCharArray, isGloballyQualified
-
Methods inherited from interface org.eclipse.cdt.core.dom.ast.cpp.ICPPTemplateParameter
getDefaultValue, getParameterID, getParameterPosition, getTemplateNestingLevel, isParameterPack
-
-
-
-
Method Detail
-
getDefault
IType getDefault() throws DOMException
The default type for this parameter. May benull
.- Throws:
DOMException
-
isSameType
boolean isSameType(IType type)
Types containing template parameters need to be compared even before it is known to which binding the template parameter belongs to. ThereforeisSameType(IType)
compares the kind and the parameter position of the template parameter, only. The name and the owner is ignored.- Specified by:
isSameType
in interfaceIType
- Parameters:
type
- can benull
.- Since:
- 5.1
-
-