Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'examples/org.eclipse.tcf.examples.presentation/src/org/eclipse/tcf/examples/presentation/Activator.java')
-rw-r--r--examples/org.eclipse.tcf.examples.presentation/src/org/eclipse/tcf/examples/presentation/Activator.java34
1 files changed, 17 insertions, 17 deletions
diff --git a/examples/org.eclipse.tcf.examples.presentation/src/org/eclipse/tcf/examples/presentation/Activator.java b/examples/org.eclipse.tcf.examples.presentation/src/org/eclipse/tcf/examples/presentation/Activator.java
index c6a33ad12..fb049c6b4 100644
--- a/examples/org.eclipse.tcf.examples.presentation/src/org/eclipse/tcf/examples/presentation/Activator.java
+++ b/examples/org.eclipse.tcf.examples.presentation/src/org/eclipse/tcf/examples/presentation/Activator.java
@@ -18,26 +18,26 @@ import org.osgi.framework.BundleContext;
*/
public class Activator extends AbstractUIPlugin {
- // The plug-in ID
- public static final String PLUGIN_ID = "org.eclipse.tcf.examples.presentation"; //$NON-NLS-1$
+ // The plug-in ID
+ public static final String PLUGIN_ID = "org.eclipse.tcf.examples.presentation"; //$NON-NLS-1$
- // The shared instance
- private static Activator plugin;
+ // The shared instance
+ private static Activator plugin;
- public Activator() {
- }
+ public Activator() {
+ }
- public void start(BundleContext context) throws Exception {
- super.start(context);
- plugin = this;
- }
+ public void start(BundleContext context) throws Exception {
+ super.start(context);
+ plugin = this;
+ }
- public void stop(BundleContext context) throws Exception {
- plugin = null;
- super.stop(context);
- }
+ public void stop(BundleContext context) throws Exception {
+ plugin = null;
+ super.stop(context);
+ }
- public static Activator getDefault() {
- return plugin;
- }
+ public static Activator getDefault() {
+ return plugin;
+ }
}

Back to the top