Package org.brixcms.plugin.site.admin

Examples of org.brixcms.plugin.site.admin.NodeTreeContainer


        return path.toString();
    }

    public void refreshNavigationTree(Component component) {
        NodeTreeContainer panel = findContainer(component);
        if (panel != null) {
            panel.updateTree();
        } else {
            throw new IllegalStateException(
                    "Can't call refreshNaviagtionTree with component outside of the hierarchy.");
        }
    }
View Full Code Here


    public void selectNode(Component component, BrixNode node) {
        selectNode(component, node, false);
    }

    public void selectNode(Component component, BrixNode node, boolean refreshTree) {
        NodeTreeContainer panel = findContainer(component);
        if (panel != null) {
            panel.selectNode(node);
            panel.updateTree();
        } else {
            throw new IllegalStateException(
                    "Can't call selectNode with component outside of the hierarchy.");
        }
    }
View Full Code Here

TOP

Related Classes of org.brixcms.plugin.site.admin.NodeTreeContainer

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.