Would it be possible for
boolean org.jaxen.XPath.booleanValueOf(Object node)
to be exposed through org.dom4j.XPath?
Looking at the code it seems like it'd be simple enough:
public boolean booleanValueOf(Object context) {
try {
setNSContext(context);
return xpath.booleanValueOf(context);
}
catch(JaxenException e) {
handleJaxenException(e);
return false;
}
}
Am I missing something? If not, it'd be quite nice for such an addition to
make it in.
Ben Scarlet
-------------------------------------------------------
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
_______________________________________________
dom4j-dev mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/dom4j-dev