1 19 20 package jxl.biff.formula; 21 22 import java.util.Stack ; 23 24 import jxl.biff.IntegerHelper; 25 26 29 class Multiply extends BinaryOperator implements ParsedThing 30 { 31 34 public Multiply() 35 { 36 } 37 38 public String getSymbol() 39 { 40 return "*"; 41 } 42 43 48 Token getToken() 49 { 50 return Token.MULTIPLY; 51 } 52 53 59 int getPrecedence() 60 { 61 return 3; 62 } 63 } 64 | Popular Tags |