Package org.jboss.on.embedded.ui.nav

Examples of org.jboss.on.embedded.ui.nav.SubCategoryTreeNode


                            resourceTypeFilter.length());

            JONTreeNode selectedNode = navigationAction.getSelectedNode();
            if (selectedNode instanceof SubCategoryTreeNode)
            {
                SubCategoryTreeNode subCatTreeNode = (SubCategoryTreeNode)selectedNode;
                addResourcesToList("", subCatTreeNode);
                this.subCategory = subCatTreeNode;
            }
        }
        FacesContext.getCurrentInstance().renderResponse();
View Full Code Here


        templateMap.put("Select Template", "");

        JONTreeNode treeNode = navigationAction.findNode(selectedSubCategoryPath);
        if (treeNode instanceof SubCategoryTreeNode)
        {
            SubCategoryTreeNode subCategoryNode = (SubCategoryTreeNode)treeNode;
            for (JONTreeNode childNode : subCategoryNode.getChildNodes())
            {
                if (childNode instanceof TreeNodeWithResourceType)
                {
                    TreeNodeWithResourceType nodeWithResourceType = (TreeNodeWithResourceType)childNode;
                    ResourceType resourceType = nodeWithResourceType.getResourceType();
View Full Code Here

TOP

Related Classes of org.jboss.on.embedded.ui.nav.SubCategoryTreeNode

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.