com.borland.jbuilder.jot
Interface JotOperation

All Known Subinterfaces:
JotAssignment, JotBinaryExpression, JotUnaryExpression

public interface JotOperation

This interface represents a unary or binary operation.


Method Summary
 java.lang.String getOperator()
          Returns a string containing the symbol of this operation, e.g.
 boolean isBinaryOperation()
          Returns true if this operation is a binary operation, i.e.
 

Method Detail

getOperator

public java.lang.String getOperator()
Returns a string containing the symbol of this operation, e.g. ">=", "++", etc.

isBinaryOperation

public boolean isBinaryOperation()
Returns true if this operation is a binary operation, i.e. it requires two operands.