1 55 56 package org.apache.commons.el; 57 58 import javax.servlet.jsp.el.ELException ; 59 60 67 68 public abstract class BinaryOperator 69 { 70 75 public BinaryOperator () 76 { 77 } 78 79 86 public abstract String getOperatorSymbol (); 87 88 93 public abstract Object apply (Object pLeft, 94 Object pRight, 95 Logger pLogger) 96 throws ELException ; 97 98 104 public boolean shouldEvaluate (Object pLeft) 105 { 106 return true; 107 } 108 109 115 public boolean shouldCoerceToBoolean () 116 { 117 return false; 118 } 119 120 } 122 | Popular Tags |