All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.xdef.XDXQueryExpr Maven / Gradle / Ivy

There is a newer version: 42.2.13
Show newest version
package org.xdef;

import org.xdef.proc.XXNode;
import org.w3c.dom.Node;

/** Interface of compiled XQuery expression.
 * @author Vaclav Trojan
 */
public interface XDXQueryExpr extends XDValue {

	/** Execute XQuery expression and return result.
	 * @param node node or null.
	 * @param xNode node model or null.
	 * @return result of execution of this object.
	 */
	public XDContainer exec(Node node, XXNode xNode);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy