| java.lang.Object org.apache.commons.configuration.tree.xpath.ConfigurationNodePointerFactory
ConfigurationNodePointerFactory | public class ConfigurationNodePointerFactory implements NodePointerFactory(Code) | | Implementation of the NodePointerFactory interface for
configuration nodes.
since: 1.3 author: Oliver Heger version: $Id: ConfigurationNodePointerFactory.java 439648 2006-09-02 20:42:10Z oheger $ |
Method Summary | |
public NodePointer | createNodePointer(QName name, Object bean, Locale locale) Creates a node pointer for the specified bean. | public NodePointer | createNodePointer(NodePointer parent, QName name, Object bean) Creates a node pointer for the specified bean. | public int | getOrder() Returns the order of this factory between other factories. |
CONFIGURATION_NODE_POINTER_FACTORY_ORDER | final public static int CONFIGURATION_NODE_POINTER_FACTORY_ORDER(Code) | | Constant for the order of this factory.
|
createNodePointer | public NodePointer createNodePointer(QName name, Object bean, Locale locale)(Code) | | Creates a node pointer for the specified bean. If the bean is a
configuration node, a corresponding pointer is returned.
Parameters: name - the name of the node Parameters: bean - the bean Parameters: locale - the locale a pointer for a configuration node if the bean is such a node |
createNodePointer | public NodePointer createNodePointer(NodePointer parent, QName name, Object bean)(Code) | | Creates a node pointer for the specified bean. If the bean is a
configuration node, a corresponding pointer is returned.
Parameters: parent - the parent node Parameters: name - the name Parameters: bean - the bean a pointer for a configuration node if the bean is such a node |
getOrder | public int getOrder()(Code) | | Returns the order of this factory between other factories.
this order's factory |
|
|