Re: [dom4j-dev] XPath.booleanValueOf

2004-06-14 Thread Maarten Coene
Ben, good idea! I've added it to CVS... thanks Maarten On Mon, 14 Jun 2004, Ben Scarlet wrote: > 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

[dom4j-dev] XPath.booleanValueOf

2004-06-14 Thread Ben Scarlet
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);