Package org.eclipse.cdt.core.dom.ast.cpp
Interface ICPPASTConstructorChainInitializer
-
- All Superinterfaces:
IASTInitializer,IASTNameOwner,IASTNode,ICPPASTPackExpandable
public interface ICPPASTConstructorChainInitializer extends IASTInitializer, ICPPASTPackExpandable, IASTNameOwner
Represents a member initializer:class X { int a; X(); }; X::X : a(0) {} // a(0) is a member initializer.- 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 ICPPASTConstructorChainInitializer[]EMPTY_CONSTRUCTORCHAININITIALIZER_ARRAYstatic ASTNodePropertyINITIALIZERstatic ASTNodePropertyMEMBER_ID-
Fields inherited from interface org.eclipse.cdt.core.dom.ast.IASTInitializer
EMPTY_INITIALIZER_ARRAY
-
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
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description ICPPASTConstructorChainInitializercopy()Returns a mutable copy of the tree rooted at this node.ICPPASTConstructorChainInitializercopy(IASTNode.CopyStyle style)Returns a mutable copy of the tree rooted at this node.IASTInitializergetInitializer()Returns the initializer for the memberIASTExpressiongetInitializerValue()Deprecated.Replaced bygetInitializer().IASTNamegetMemberInitializerId()Returns the name of the member.voidsetInitializer(IASTInitializer initializer)Not allowed on frozen ast.voidsetInitializerValue(IASTExpression expression)Deprecated.Replaced bysetInitializer(IASTInitializer).voidsetMemberInitializerId(IASTName name)Not allowed on frozen ast.-
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.ICPPASTPackExpandable
isPackExpansion, setIsPackExpansion
-
-
-
-
Field Detail
-
EMPTY_CONSTRUCTORCHAININITIALIZER_ARRAY
static final ICPPASTConstructorChainInitializer[] EMPTY_CONSTRUCTORCHAININITIALIZER_ARRAY
-
MEMBER_ID
static final ASTNodeProperty MEMBER_ID
-
INITIALIZER
static final ASTNodeProperty INITIALIZER
-
-
Method Detail
-
getMemberInitializerId
IASTName getMemberInitializerId()
Returns the name of the member.
-
getInitializer
IASTInitializer getInitializer()
Returns the initializer for the member- Since:
- 5.2
-
copy
ICPPASTConstructorChainInitializer 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 interfaceIASTInitializer- Specified by:
copyin interfaceIASTNode- Since:
- 5.1
-
copy
ICPPASTConstructorChainInitializer 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 interfaceIASTInitializer- Specified by:
copyin interfaceIASTNode- Parameters:
style-IASTNode.CopyStylecreate a copy with or without locations. Please seeIASTNode.CopyStylefor restrictions on copies with Locations.- Since:
- 5.3
-
setMemberInitializerId
void setMemberInitializerId(IASTName name)
Not allowed on frozen ast.
-
setInitializer
void setInitializer(IASTInitializer initializer)
Not allowed on frozen ast.- Since:
- 5.2
-
getInitializerValue
@Deprecated IASTExpression getInitializerValue()
Deprecated.Replaced bygetInitializer().- Restriction:
- This method is not intended to be referenced by clients.
-
setInitializerValue
@Deprecated void setInitializerValue(IASTExpression expression)
Deprecated.Replaced bysetInitializer(IASTInitializer).- Restriction:
- This method is not intended to be referenced by clients.
-
-