Examples of ProviderDelegateService


Examples of gov.nasa.arc.mct.services.component.ProviderDelegateService

        ActionManager.registerMenu(ThisImportMenu.class, "THIS_IMPORT_SUBMENU");
        ActionManager.registerMenu(ObjectsImportMenu.class, "OBJECTS_IMPORT_SUBMENU");
       
        List<PluginStartupStatus> statuses = new LinkedList<PluginStartupStatus>();
        // Check plugin startup statuses
        ProviderDelegateService providerDelegateService = PlatformImpl.getInstance().getProviderDelegateService();
        for (ProviderDelegate delegate : providerDelegateService.getDelegates()) {
            PluginStartupStatus status = delegate.check();
            if (!status.getStatus())
                statuses.add(status);
        }
        if (!statuses.isEmpty())
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.