* @return an array list of the nodes
*/
public Object evalObject(Node node, ExprEnvironment env)
throws XPathException
{
NodeListImpl list = new NodeListImpl();
NodeIterator iter = _pattern.select(node, env);
Node value = null;
while ((value = iter.nextNode()) != null)
list.add(value);
return list;
}