Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.scout.sdk/templates/ui.swing/src/Activator.java')
-rw-r--r--org.eclipse.scout.sdk/templates/ui.swing/src/Activator.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/org.eclipse.scout.sdk/templates/ui.swing/src/Activator.java b/org.eclipse.scout.sdk/templates/ui.swing/src/Activator.java
index 28d32f409..f7b65ff13 100644
--- a/org.eclipse.scout.sdk/templates/ui.swing/src/Activator.java
+++ b/org.eclipse.scout.sdk/templates/ui.swing/src/Activator.java
@@ -4,7 +4,7 @@
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
- *
+ *
* Contributors:
* BSI Business Systems Integration AG - initial API and implementation
******************************************************************************/
@@ -23,13 +23,14 @@ public class Activator implements BundleActivator{
return plugin;
}
+ @Override
public void start(BundleContext context) throws Exception{
plugin=this;
}
+ @Override
public void stop(BundleContext context) throws Exception{
plugin=null;
}
-
}

Back to the top