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

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

Introduction

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

The text is from its open source code.

Constructor

PrefixExpression(AST ast)
Creates a new AST node for an prefix expression owned by the given AST.

Method

ASTgetAST()
Returns this node's AST.
ExpressiongetOperand()
Returns the operand of this prefix expression.
PrefixExpression.OperatorgetOperator()
Returns the operator of this prefix expression.
ASTNodegetParent()
Returns this node's parent node, or null if this is the root node.
intgetStartPosition()
Returns the character index into the original source file indicating where the source fragment corresponding to this node begins.
ITypeBindingresolveTypeBinding()
Resolves and returns the binding for the type of this expression.
voidsetOperand(Expression expression)
Sets the operand of this prefix expression.
voidsetOperator(PrefixExpression.Operator operator)
Sets the operator of this prefix expression.
voidsetSourceRange(int startPosition, int length)
Sets the source range of the original source file where the source fragment corresponding to this node was found.
StringtoString()
Returns a string representation of this node suitable for debugging purposes only.