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

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


        // Grab the currently selected node and find the closest parent resource
        // in the hierarchy and store it away in the conversation.
        // We can grab it later to tell the ResourceManager what resource
        // to use as parent when creating this new resource.
        JONTreeNode currentNode = navigationAction.getSelectedNode();
        ancestorResource = currentNode.getClosestResource();

        serviceType = configurationManager.getResourceType(selectedResourceTypeName);
        Map<String, ConfigurationTemplate> templates = serviceType.getResourceConfigurationDefinition().getTemplates();
        Configuration originalTemplate = templates.get(selectedTemplateName).getConfiguration();
View Full Code Here


    {

        templateMap = new LinkedHashMap<String, String>();
        templateMap.put("Select Template", "");

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

TOP

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

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.