Package org.apache.jackrabbit.spi.commons.ItemInfoBuilder

Examples of org.apache.jackrabbit.spi.commons.ItemInfoBuilder.NodeInfoBuilder


         * Create a new child {@link NodeInfo} on this NodeInfo with a given <code>name</code>.
         * @param name
         * @return  <code>this</code>
         */
        public NodeInfoBuilder createNodeInfo(String name) {
            return new NodeInfoBuilder(this, name, listener);
        }
View Full Code Here


     * @param listener  {@link Listener} to receive notifications about {@link NodeInfo}s,
     *                  {@link PropertyInfo}s and {@link ChildInfo}s built.
     * @return
     */
    public static NodeInfoBuilder nodeInfoBuilder(String name, Listener listener) {
        return new NodeInfoBuilder(null, name, listener);
    }
View Full Code Here

TOP

Related Classes of org.apache.jackrabbit.spi.commons.ItemInfoBuilder.NodeInfoBuilder

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.