public com.sun.org.apache.xpath.internal.objects.XObject | operate(com.sun.org.apache.xpath.internal.objects.XObject left, com.sun.org.apache.xpath.internal.objects.XObject right)Apply the operation to two operands, and return the result.
return new XNumber((int) (left.num() / right.num()));
|