| java.lang.Object org.apache.xpath.objects.XObjectFactory
XObjectFactory | public class XObjectFactory (Code) | | |
Method Summary | |
public static XObject | create(Object val) Create the right XObject based on the type of the object passed. | public static XObject | create(Object val, XPathContext xctxt) Create the right XObject based on the type of the object passed.
This function can make an XObject that exposes DOM Nodes, NodeLists, and
NodeIterators to the XSLT stylesheet as node-sets.
Parameters: val - The java object which this object will wrap. Parameters: xctxt - The XPath context. |
create | public static XObject create(Object val)(Code) | | Create the right XObject based on the type of the object passed. This
function can not make an XObject that exposes DOM Nodes, NodeLists, and
NodeIterators to the XSLT stylesheet as node-sets.
Parameters: val - The java object which this object will wrap. the right XObject based on the type of the object passed. |
create | public static XObject create(Object val, XPathContext xctxt)(Code) | | Create the right XObject based on the type of the object passed.
This function can make an XObject that exposes DOM Nodes, NodeLists, and
NodeIterators to the XSLT stylesheet as node-sets.
Parameters: val - The java object which this object will wrap. Parameters: xctxt - The XPath context. the right XObject based on the type of the object passed. |
|
|