public com.sun.org.apache.xpath.internal.objects.XObject | operate(com.sun.org.apache.xpath.internal.objects.XObject right)Apply the operation to two operands, and return the result.
if (XObject.CLASS_BOOLEAN == right.getType())
return right;
else
return right.bool() ? XBoolean.S_TRUE : XBoolean.S_FALSE;
|