Package org.eclipse.cdt.core.dom.ast.cpp
Interface ICPPASTSimpleTypeTemplateParameter
-
- All Superinterfaces:
IASTNameOwner,IASTNode,ICPPASTTemplateParameter
public interface ICPPASTSimpleTypeTemplateParameter extends ICPPASTTemplateParameter, IASTNameOwner
This interface represents a simple type template parameter.- Restriction:
- This interface is not intended to be implemented by clients.
- Restriction:
- This interface is not intended to be extended by clients.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.eclipse.cdt.core.dom.ast.IASTNode
IASTNode.CopyStyle
-
-
Field Summary
Fields Modifier and Type Field Description static ASTNodePropertyDEFAULT_TYPERelation between template parameter and its default type.static ASTNodePropertyPARAMETER_NAMERelation between template parameter and its name.static intst_classst_classrepresents a class.static intst_typenamest_typenamerepresents a typename.-
Fields inherited from interface org.eclipse.cdt.core.dom.ast.IASTNameOwner
r_declaration, r_definition, r_reference, r_unclear
-
Fields inherited from interface org.eclipse.cdt.core.dom.ast.IASTNode
EMPTY_NODE_ARRAY
-
Fields inherited from interface org.eclipse.cdt.core.dom.ast.cpp.ICPPASTTemplateParameter
EMPTY_TEMPLATEPARAMETER_ARRAY
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ICPPASTSimpleTypeTemplateParametercopy()Returns a mutable copy of the tree rooted at this node.ICPPASTSimpleTypeTemplateParametercopy(IASTNode.CopyStyle style)Returns a mutable copy of the tree rooted at this node.IASTTypeIdgetDefaultType()Returns the default value (a type id) for this template parameter, ornull.IASTNamegetName()Returns the template parameter name.intgetParameterType()Get the type of the type parameter (eitherst_classorst_typename).voidsetDefaultType(IASTTypeId typeId)Sets the default value (a type id) for this template parameter.voidsetIsParameterPack(boolean val)Set whether this is a parameter pack.voidsetName(IASTName name)Sets the template parameter name.voidsetParameterType(int value)Set the type of the type parameter.-
Methods inherited from interface org.eclipse.cdt.core.dom.ast.IASTNameOwner
getRoleForName
-
Methods inherited from interface org.eclipse.cdt.core.dom.ast.IASTNode
accept, contains, getChildren, getContainingFilename, getFileLocation, getLeadingSyntax, getNodeLocations, getOriginalNode, getParent, getPropertyInParent, getRawSignature, getSyntax, getTrailingSyntax, getTranslationUnit, isActive, isFrozen, isPartOfTranslationUnitFile, setParent, setPropertyInParent
-
Methods inherited from interface org.eclipse.cdt.core.dom.ast.cpp.ICPPASTTemplateParameter
isParameterPack
-
-
-
-
Field Detail
-
PARAMETER_NAME
static final ASTNodeProperty PARAMETER_NAME
Relation between template parameter and its name.
-
DEFAULT_TYPE
static final ASTNodeProperty DEFAULT_TYPE
Relation between template parameter and its default type.
-
st_class
static final int st_class
st_classrepresents a class.- See Also:
- Constant Field Values
-
st_typename
static final int st_typename
st_typenamerepresents a typename.- See Also:
- Constant Field Values
-
-
Method Detail
-
getParameterType
int getParameterType()
Get the type of the type parameter (eitherst_classorst_typename).
-
getName
IASTName getName()
Returns the template parameter name.
-
getDefaultType
IASTTypeId getDefaultType()
Returns the default value (a type id) for this template parameter, ornull.
-
setParameterType
void setParameterType(int value)
Set the type of the type parameter.- Parameters:
value- The type of the type parameter (eitherst_classorst_typename)
-
setIsParameterPack
void setIsParameterPack(boolean val)
Set whether this is a parameter pack.- Since:
- 5.2
-
setName
void setName(IASTName name)
Sets the template parameter name.
-
setDefaultType
void setDefaultType(IASTTypeId typeId)
Sets the default value (a type id) for this template parameter.
-
copy
ICPPASTSimpleTypeTemplateParameter copy()
Description copied from interface:IASTNodeReturns a mutable copy of the tree rooted at this node. The following postconditions hold:copy.getParent() == null copy.getPropertyInParent() == null copy.isFrozen() == false
Preprocessor nodes do not currently support being copied. Implicit name nodes are not copied, instead they can be regenerated if required.Calling this method is equivalent to
copy(CopyStyle.withoutLocations).- Specified by:
copyin interfaceIASTNode- Specified by:
copyin interfaceICPPASTTemplateParameter- Since:
- 5.1
-
copy
ICPPASTSimpleTypeTemplateParameter copy(IASTNode.CopyStyle style)
Description copied from interface:IASTNodeReturns a mutable copy of the tree rooted at this node. The following postconditions hold:copy.getParent() == null copy.getPropertyInParent() == null copy.isFrozen() == false
Preprocessor nodes do not currently support being copied. Implicit name nodes are not copied, instead they can be regenerated if required.- Specified by:
copyin interfaceIASTNode- Specified by:
copyin interfaceICPPASTTemplateParameter- Parameters:
style-IASTNode.CopyStylecreate a copy with or without locations. Please seeIASTNode.CopyStylefor restrictions on copies with Locations.- Since:
- 5.3
-
-