| Package | Description |
|---|---|
| javax.ide.model.java.source |
Various interfaces for use with Tree objects.
|
| Modifier and Type | Method and Description |
|---|---|
InfixExpressionT |
TreeFactory.createInfixExpression(ExpressionT.ExpressionKind kind,
ExpressionT lhs,
ExpressionT rhs)
Creates an infix expression with two operands.
|
abstract InfixExpressionT |
TreeFactory.createInfixExpression(ExpressionT.ExpressionKind kind,
ExpressionT one,
ExpressionT two,
ExpressionT[] operands)
Creates an infix expression with multiple operands.
|
abstract InfixExpressionT |
TreeFactory.createInstanceof(ExpressionT lhs,
TypeReferenceT type)
Creates a new instanceof expression.
|
| Modifier and Type | Method and Description |
|---|---|
void |
TreeVisitor.visitInfixExpression(InfixExpressionT tree)
Visits a InfixExpressionT.
|