|
Eclipse CDT 7.0 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface IASTCastExpression
This interface represents a cast expression of the form (TypeId)operand.
Nested Class Summary |
---|
Nested classes/interfaces inherited from interface org.eclipse.cdt.core.dom.ast.IASTExpression |
---|
IASTExpression.ValueCategory |
Nested classes/interfaces inherited from interface org.eclipse.cdt.core.dom.ast.IASTNode |
---|
IASTNode.CopyStyle |
Field Summary | |
---|---|
static int |
op_cast
op_cast represents a traditional cast. |
static int |
op_last
op_last for subinterfaces |
static ASTNodeProperty |
OPERAND
OPERAND represents the relationship between a cast
expression and the expression it is casting (operand). |
static ASTNodeProperty |
TYPE_ID
TYPE_ID represents the relationship between a cast
expression and the type cast to. |
Fields inherited from interface org.eclipse.cdt.core.dom.ast.IASTExpression |
---|
EMPTY_EXPRESSION_ARRAY |
Fields inherited from interface org.eclipse.cdt.core.dom.ast.IASTNode |
---|
EMPTY_NODE_ARRAY |
Method Summary | |
---|---|
IASTCastExpression |
copy()
Returns a mutable copy of the tree rooted at this node. |
IASTCastExpression |
copy(IASTNode.CopyStyle style)
Returns a mutable copy of the tree rooted at this node. |
IASTExpression |
getOperand()
Get expression being cast. |
int |
getOperator()
Get the type of cast (as an operator). |
IASTTypeId |
getTypeId()
Get the typeId. |
void |
setOperand(IASTExpression expression)
Set the expression being cast. |
void |
setOperator(int value)
Set the operator (type of cast). |
void |
setTypeId(IASTTypeId typeId)
Set the typeId. |
Methods inherited from interface org.eclipse.cdt.core.dom.ast.IASTExpression |
---|
getExpressionType, getValueCategory, isLValue |
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 |
Field Detail |
---|
static final ASTNodeProperty TYPE_ID
TYPE_ID
represents the relationship between a cast
expression and the type cast to.
static final ASTNodeProperty OPERAND
OPERAND
represents the relationship between a cast
expression and the expression it is casting (operand).
static final int op_cast
op_cast
represents a traditional cast.
static final int op_last
op_last
for subinterfaces
Method Detail |
---|
int getOperator()
void setOperator(int value)
value
- IASTExpression getOperand()
IASTExpression
the expression being castvoid setOperand(IASTExpression expression)
expression
- IASTExpression
the expression to be castvoid setTypeId(IASTTypeId typeId)
typeId
- IASTTypeId
to be set.IASTTypeId getTypeId()
IASTTypeId
representing type being casted to.IASTCastExpression copy()
IASTNode
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
copy
in interface IASTExpression
copy
in interface IASTInitializerClause
copy
in interface IASTNode
IASTCastExpression copy(IASTNode.CopyStyle style)
IASTNode
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.
copy
in interface IASTExpression
copy
in interface IASTInitializerClause
copy
in interface IASTNode
style
- IASTNode.CopyStyle
create a copy with or without locations. Please see
IASTNode.CopyStyle
for restrictions on copies with Locations.
|
Eclipse CDT 7.0 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |