Package org.wapama.web.preference

Examples of org.wapama.web.preference.IDiagramPreferenceService


    public void start(final BundleContext context) throws Exception {
        {
            ServiceReference sRef =
                context.getServiceReference(IDiagramPreferenceService.class.getName());
            if (sRef != null) {
                IDiagramPreferenceService service = (IDiagramPreferenceService) context.getService(sRef);
                EditorHandler.PREFERENCE_FACTORY = service;
            }
            //use a service tracker to be called back when the IUUIDBasedRepositoryFactory is ready:
            ServiceTrackerCustomizer cust = new ServiceTrackerCustomizer() {

                public void removedService(ServiceReference reference, Object service) {
                    //special servlet shutdown
                }

                public void modifiedService(ServiceReference reference, Object service) {
                    //reload?
                }

                public Object addingService(ServiceReference reference) {
                    IDiagramPreferenceService service = (IDiagramPreferenceService) context.getService(reference);
                    EditorHandler.PREFERENCE_FACTORY = service;
                    return service;
                }
            };
            ServiceTracker tracker = new ServiceTracker(context,
View Full Code Here

TOP

Related Classes of org.wapama.web.preference.IDiagramPreferenceService

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.