]> git.argeo.org Git - lgpl/argeo-commons.git/blobdiff - security/plugins/org.argeo.security.ui.admin/src/main/java/org/argeo/security/ui/admin/SecurityAdminPlugin.java
Split security UI to security admin ui
[lgpl/argeo-commons.git] / security / plugins / org.argeo.security.ui.admin / src / main / java / org / argeo / security / ui / admin / SecurityAdminPlugin.java
index cc5d42919bbeae2e641d763c111b2d3c73944e87..dfe767bf18fd9c81c4eb7ba9764c8a42224b3f91 100644 (file)
@@ -5,48 +5,22 @@ import org.eclipse.ui.plugin.AbstractUIPlugin;
 import org.osgi.framework.BundleContext;
 
 public class SecurityAdminPlugin extends AbstractUIPlugin {
-
-       // The plug-in ID
        public static final String PLUGIN_ID = "org.argeo.security.ui.admin"; //$NON-NLS-1$
-
-       // The shared instance
        private static SecurityAdminPlugin plugin;
 
-       /**
-        * The constructor
-        */
        public SecurityAdminPlugin() {
        }
 
-       /*
-        * (non-Javadoc)
-        * 
-        * @see
-        * org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext
-        * )
-        */
        public void start(BundleContext context) throws Exception {
                super.start(context);
                plugin = this;
        }
 
-       /*
-        * (non-Javadoc)
-        * 
-        * @see
-        * org.eclipse.ui.plugin.AbstractUIPlugin#stop(org.osgi.framework.BundleContext
-        * )
-        */
        public void stop(BundleContext context) throws Exception {
                plugin = null;
                super.stop(context);
        }
 
-       /**
-        * Returns the shared instance
-        * 
-        * @return the shared instance
-        */
        public static SecurityAdminPlugin getDefault() {
                return plugin;
        }