]> git.argeo.org Git - lgpl/argeo-commons.git/blobdiff - eclipse/plugins/org.argeo.eclipse.ui/src/main/java/org/argeo/eclipse/spring/ApplicationContextTracker.java
Adapt Security to RCP
[lgpl/argeo-commons.git] / eclipse / plugins / org.argeo.eclipse.ui / src / main / java / org / argeo / eclipse / spring / ApplicationContextTracker.java
index 3ab629fd033bb6166ba8ddbef0ea0ae9d1295334..805d11d8a580632bc71acc7eb72bc2e19f8e35fc 100644 (file)
@@ -1,10 +1,25 @@
+/*\r
+ * Copyright (C) 2010 Mathieu Baudier <mbaudier@argeo.org>\r
+ *\r
+ * Licensed under the Apache License, Version 2.0 (the "License");\r
+ * you may not use this file except in compliance with the License.\r
+ * You may obtain a copy of the License at\r
+ *\r
+ *         http://www.apache.org/licenses/LICENSE-2.0\r
+ *\r
+ * Unless required by applicable law or agreed to in writing, software\r
+ * distributed under the License is distributed on an "AS IS" BASIS,\r
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ * See the License for the specific language governing permissions and\r
+ * limitations under the License.\r
+ */\r
+\r
 package org.argeo.eclipse.spring;\r
 \r
 import static java.text.MessageFormat.format;\r
 \r
 import org.apache.commons.logging.Log;\r
 import org.apache.commons.logging.LogFactory;\r
-import org.argeo.eclipse.ui.ArgeoUiPlugin;\r
 import org.eclipse.core.runtime.Platform;\r
 import org.osgi.framework.Bundle;\r
 import org.osgi.framework.BundleContext;\r
@@ -38,8 +53,8 @@ class ApplicationContextTracker {
         */\r
        public ApplicationContextTracker(final Bundle contributorBundle,\r
                        final BundleContext factoryBundleContext) {\r
-               final String filter = format(FILTER, contributorBundle\r
-                               .getSymbolicName());\r
+               final String filter = format(FILTER,\r
+                               contributorBundle.getSymbolicName());\r
                try {\r
                        applicationContextServiceTracker = new ServiceTracker(\r
                                        factoryBundleContext, FrameworkUtil.createFilter(filter),\r
@@ -82,9 +97,7 @@ class ApplicationContextTracker {
 \r
        static ApplicationContext getApplicationContext(Bundle contributorBundle) {\r
                if (log.isTraceEnabled())\r
-                       log\r
-                                       .trace("Get application context for bundle "\r
-                                                       + contributorBundle);\r
+                       log.trace("Get application context for bundle " + contributorBundle);\r
 \r
                if (contributorBundle.getState() != Bundle.ACTIVE\r
                                && contributorBundle.getState() != Bundle.STARTING) {\r
@@ -98,8 +111,7 @@ class ApplicationContextTracker {
                }\r
 \r
                final ApplicationContextTracker applicationContextTracker = new ApplicationContextTracker(\r
-                               contributorBundle, ArgeoUiPlugin.getDefault()\r
-                                               .getBundleContext());\r
+                               contributorBundle, contributorBundle.getBundleContext());\r
                ApplicationContext applicationContext = null;\r
                try {\r
                        applicationContext = applicationContextTracker\r