Package lcmc.crm.ui.resource

Examples of lcmc.crm.ui.resource.AvailableServiceInfo


            final ResourceAgentClassInfo raci = resourceAgentClassInfoProvider.get();
            raci.init(crmClass, this);
            classInfoMap.put(crmClass, raci);
            final DefaultMutableTreeNode classNode = treeMenuController.createMenuItem(availableServicesNode, raci);
            for (final ResourceAgent resourceAgent : crmXml.getServices(crmClass)) {
                final AvailableServiceInfo availableService = availableServiceInfoProvider.get();
                availableService.init(resourceAgent, this);
                availableServiceMap.put(resourceAgent, availableService);
                treeMenuController.createMenuItem(classNode, availableService);
            }
        }
    }
View Full Code Here

TOP

Related Classes of lcmc.crm.ui.resource.AvailableServiceInfo

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.