Interface IOperator


public interface IOperator

Required method for an operator in an expression.


Method Summary
 Integer apply(Integer left, Integer right)
          Returns the result of applying this to the given operands.
 

Method Detail

apply

public Integer apply(Integer left,
                     Integer right)
Returns the result of applying this to the given operands.

Parameters:
left - left side operand
right - right side operand