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

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

Introduction

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

The text is from its open source code.

Constructor

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

Method

ExpressiongetLeftOperand()
Returns the left operand of this instanceof expression.
TypegetRightOperand()
Returns the right operand of this instanceof expression.
ITypeBindingresolveTypeBinding()
Resolves and returns the binding for the type of this expression.
voidsetLeftOperand(Expression expression)
Sets the left operand of this instanceof expression.
voidsetRightOperand(Type referenceType)
Sets the right operand of this instanceof 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.