1 16 19 package org.apache.xpath.operations; 20 21 import org.apache.xpath.objects.XBoolean; 22 import org.apache.xpath.objects.XObject; 23 24 27 public class Gt extends Operation 28 { 29 30 41 public XObject operate(XObject left, XObject right) 42 throws javax.xml.transform.TransformerException  43 { 44 return left.greaterThan(right) ? XBoolean.S_TRUE : XBoolean.S_FALSE; 45 } 46 } 47 | Popular Tags |