Uses of Interface
ca.bcit.cst.comp2526.assign2b.solution.Operation

Uses of Operation in ca.bcit.cst.comp2526.assign2b.solution
 

Classes in ca.bcit.cst.comp2526.assign2b.solution that implement Operation
 class AbstractOperation
          Abstracton for mathmatical operations.
 class AdditionOperation
          Abstract the addition of two numbers.
 class DivisionOperation
          Abstract the division of two numbers.
 class MultiplicationOperation
          Abstract the multiplication of two numbers.
 class SubtractionOperation
          Abstract the subtraction of two numbers.
 

Methods in ca.bcit.cst.comp2526.assign2b.solution that return Operation
static Operation RPNCalculator.getOperation(char code)
          Get the Operation specified by the code.
 

Methods in ca.bcit.cst.comp2526.assign2b.solution with parameters of type Operation
 void RPNCalculator.perform(Operation operation)
          Perform the specified operation with the top two values on the operand stack.