Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/core/org.eclipse.papyrus.modelexplorer/src/org/eclipse/papyrus/modelexplorer/Activator.java')
-rw-r--r--plugins/core/org.eclipse.papyrus.modelexplorer/src/org/eclipse/papyrus/modelexplorer/Activator.java21
1 files changed, 14 insertions, 7 deletions
diff --git a/plugins/core/org.eclipse.papyrus.modelexplorer/src/org/eclipse/papyrus/modelexplorer/Activator.java b/plugins/core/org.eclipse.papyrus.modelexplorer/src/org/eclipse/papyrus/modelexplorer/Activator.java
index 65a0b403322..729c9ff2857 100644
--- a/plugins/core/org.eclipse.papyrus.modelexplorer/src/org/eclipse/papyrus/modelexplorer/Activator.java
+++ b/plugins/core/org.eclipse.papyrus.modelexplorer/src/org/eclipse/papyrus/modelexplorer/Activator.java
@@ -34,20 +34,18 @@ import org.osgi.framework.BundleContext;
* The activator class controls the plug-in life cycle
*/
@SuppressWarnings("restriction")
-public class Activator extends AbstractUIPlugin {
+public class Activator extends AbstractUIPlugin implements org.eclipse.ui.IStartup {
- // The plug-in ID
+ /** The plug-in ID */
public static final String PLUGIN_ID = "org.eclipse.papyrus.modelexplorer"; //$NON-NLS-1$
- // The shared instance
+ /** The plug-in shared instance */
private static Activator plugin;
- /** The shared log helper. */
+ /** The log service */
public static LogHelper log;
- /**
- * The constructor
- */
+ /** Default constructor */
public Activator() {
}
@@ -148,4 +146,13 @@ public class Activator extends AbstractUIPlugin {
}
}
+ /**
+ *
+ * @see org.eclipse.ui.IStartup#earlyStartup()
+ *
+ */
+ public void earlyStartup() {
+
+ }
+
}

Back to the top