Java org.eclipse.jdt.core.dom CastExpression fields, constructors, methods, implement or subclass

Example usage for Java org.eclipse.jdt.core.dom CastExpression fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.eclipse.jdt.core.dom CastExpression.

The text is from its open source code.

Field

ChildPropertyDescriptorEXPRESSION_PROPERTY
The "expression" structural property of this node type (child type: Expression ).

Constructor

CastExpression(AST ast)
Creates a new AST node for a cast expression owned by the given AST.

Method

ExpressiongetExpression()
Returns the expression of this cast expression.
TypegetType()
Returns the type in this cast expression.
voidsetExpression(Expression expression)
Sets the expression of this cast expression.
voidsetType(Type type)
Sets the type in this cast expression to the given type.