diff --git a/cave/com.raytheon.uf.viz.tcs/META-INF/MANIFEST.MF b/cave/com.raytheon.uf.viz.tcs/META-INF/MANIFEST.MF index f86291ce4a..e250442cd0 100644 --- a/cave/com.raytheon.uf.viz.tcs/META-INF/MANIFEST.MF +++ b/cave/com.raytheon.uf.viz.tcs/META-INF/MANIFEST.MF @@ -3,7 +3,6 @@ Bundle-ManifestVersion: 2 Bundle-Name: Tcs Plug-in Bundle-SymbolicName: com.raytheon.uf.viz.tcs Bundle-Version: 1.14.0.qualifier -Bundle-Activator: com.raytheon.uf.viz.tcs.Activator Bundle-Vendor: RAYTHEON Require-Bundle: org.eclipse.ui, com.raytheon.uf.viz.core, @@ -35,5 +34,4 @@ Import-Package: com.raytheon.uf.common.dataplugin, org.eclipse.swt.graphics, org.eclipse.ui.plugin, org.osgi.framework -Export-Package: com.raytheon.uf.viz.tcs, - com.raytheon.uf.viz.tcs.rsc +Export-Package: com.raytheon.uf.viz.tcs.rsc diff --git a/cave/com.raytheon.uf.viz.tcs/src/com/raytheon/uf/viz/tcs/Activator.java b/cave/com.raytheon.uf.viz.tcs/src/com/raytheon/uf/viz/tcs/Activator.java deleted file mode 100644 index edc41dd23d..0000000000 --- a/cave/com.raytheon.uf.viz.tcs/src/com/raytheon/uf/viz/tcs/Activator.java +++ /dev/null @@ -1,69 +0,0 @@ -/** - * This software was developed and / or modified by Raytheon Company, - * pursuant to Contract DG133W-05-CQ-1067 with the US Government. - * - * U.S. EXPORT CONTROLLED TECHNICAL DATA - * This software product contains export-restricted data whose - * export/transfer/disclosure is restricted by U.S. law. Dissemination - * to non-U.S. persons whether in the United States or abroad requires - * an export license or other authorization. - * - * Contractor Name: Raytheon Company - * Contractor Address: 6825 Pine Street, Suite 340 - * Mail Stop B8 - * Omaha, NE 68106 - * 402.291.0100 - * - * See the AWIPS II Master Rights File ("Master Rights File.pdf") for - * further licensing information. - **/ -package com.raytheon.uf.viz.tcs; - -import org.eclipse.ui.plugin.AbstractUIPlugin; -import org.osgi.framework.BundleContext; - -/** - * The activator class controls the plug-in life cycle - */ -public class Activator extends AbstractUIPlugin { - - // The plug-in ID - public static final String PLUGIN_ID = "com.raytheon.uf.viz.tcs"; - - // The shared instance - private static Activator plugin; - - /** - * The constructor - */ - public Activator() { - } - - /* - * (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 Activator getDefault() { - return plugin; - } - -} diff --git a/cave/com.raytheon.uf.viz.tcs/src/com/raytheon/uf/viz/tcs/rsc/TCSResourceData.java b/cave/com.raytheon.uf.viz.tcs/src/com/raytheon/uf/viz/tcs/rsc/TCSResourceData.java index f75feaae88..0bd7d6f800 100644 --- a/cave/com.raytheon.uf.viz.tcs/src/com/raytheon/uf/viz/tcs/rsc/TCSResourceData.java +++ b/cave/com.raytheon.uf.viz.tcs/src/com/raytheon/uf/viz/tcs/rsc/TCSResourceData.java @@ -34,8 +34,6 @@ import com.raytheon.uf.viz.core.exception.VizException; import com.raytheon.uf.viz.core.rsc.AbstractRequestableResourceData; import com.raytheon.uf.viz.core.rsc.AbstractVizResource; import com.raytheon.uf.viz.core.rsc.LoadProperties; -import com.raytheon.uf.viz.core.status.StatusConstants; -import com.raytheon.uf.viz.tcs.Activator; /** * @@ -55,7 +53,9 @@ import com.raytheon.uf.viz.tcs.Activator; @XmlAccessorType(XmlAccessType.NONE) @XmlType(name = "tcsResourceData") public class TCSResourceData extends AbstractRequestableResourceData { - private static final transient IUFStatusHandler statusHandler = UFStatus.getHandler(TCSResourceData.class); + private static final transient IUFStatusHandler statusHandler = UFStatus + .getHandler(TCSResourceData.class); + @XmlAttribute protected String plotSource = null; diff --git a/cave/com.raytheon.uf.viz.thinclient.alertviz/META-INF/MANIFEST.MF b/cave/com.raytheon.uf.viz.thinclient.alertviz/META-INF/MANIFEST.MF index ce881b65c1..2f599ec648 100644 --- a/cave/com.raytheon.uf.viz.thinclient.alertviz/META-INF/MANIFEST.MF +++ b/cave/com.raytheon.uf.viz.thinclient.alertviz/META-INF/MANIFEST.MF @@ -2,8 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: Thinclient Alertviz Bundle-SymbolicName: com.raytheon.uf.viz.thinclient.alertviz;singleton:=true -Bundle-Version: 1.0.0.qualifier -Bundle-Activator: com.raytheon.uf.viz.thinclient.alertviz.Activator +Bundle-Version: 1.14.0.qualifier Bundle-Vendor: RAYTHEON Require-Bundle: com.raytheon.uf.viz.core, com.raytheon.uf.viz.application;bundle-version="1.0.0", @@ -15,5 +14,5 @@ Require-Bundle: com.raytheon.uf.viz.core, com.raytheon.uf.viz.alertviz;bundle-version="1.12.1174", com.raytheon.uf.common.message;bundle-version="1.12.1174", com.raytheon.uf.common.comm -Bundle-RequiredExecutionEnvironment: JavaSE-1.6 +Bundle-RequiredExecutionEnvironment: JavaSE-1.7 Bundle-ActivationPolicy: lazy diff --git a/cave/com.raytheon.uf.viz.thinclient.alertviz/src/com/raytheon/uf/viz/thinclient/alertviz/Activator.java b/cave/com.raytheon.uf.viz.thinclient.alertviz/src/com/raytheon/uf/viz/thinclient/alertviz/Activator.java deleted file mode 100644 index 3ce19a8451..0000000000 --- a/cave/com.raytheon.uf.viz.thinclient.alertviz/src/com/raytheon/uf/viz/thinclient/alertviz/Activator.java +++ /dev/null @@ -1,50 +0,0 @@ -package com.raytheon.uf.viz.thinclient.alertviz; - -import org.eclipse.ui.plugin.AbstractUIPlugin; -import org.osgi.framework.BundleContext; - -/** - * The activator class controls the plug-in life cycle - */ -public class Activator extends AbstractUIPlugin { - - // The plug-in ID - public static final String PLUGIN_ID = "com.raytheon.uf.viz.thinclient.alertviz"; //$NON-NLS-1$ - - // The shared instance - private static Activator plugin; - - /** - * The constructor - */ - public Activator() { - } - - /* - * (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 Activator getDefault() { - return plugin; - } - -} diff --git a/cave/com.raytheon.uf.viz.truecolor.gl/META-INF/MANIFEST.MF b/cave/com.raytheon.uf.viz.truecolor.gl/META-INF/MANIFEST.MF index ddb9145bbe..6b942274c3 100644 --- a/cave/com.raytheon.uf.viz.truecolor.gl/META-INF/MANIFEST.MF +++ b/cave/com.raytheon.uf.viz.truecolor.gl/META-INF/MANIFEST.MF @@ -2,8 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: True Color GL Bundle-SymbolicName: com.raytheon.uf.viz.truecolor.gl;singleton:=true -Bundle-Version: 1.0.0.qualifier -Bundle-Activator: com.raytheon.uf.viz.truecolor.gl.Activator +Bundle-Version: 1.14.0.qualifier Bundle-Vendor: RAYTHEON Require-Bundle: org.eclipse.core.runtime, com.raytheon.uf.viz.core;bundle-version="1.12.1174", @@ -12,5 +11,5 @@ Require-Bundle: org.eclipse.core.runtime, javax.media.opengl;bundle-version="1.1.0", com.raytheon.uf.common.util;bundle-version="1.12.1174", com.raytheon.uf.common.colormap;bundle-version="1.12.1174" -Bundle-RequiredExecutionEnvironment: JavaSE-1.6 +Bundle-RequiredExecutionEnvironment: JavaSE-1.7 Bundle-ActivationPolicy: lazy diff --git a/cave/com.raytheon.uf.viz.truecolor.gl/src/com/raytheon/uf/viz/truecolor/gl/Activator.java b/cave/com.raytheon.uf.viz.truecolor.gl/src/com/raytheon/uf/viz/truecolor/gl/Activator.java deleted file mode 100644 index 0d51332790..0000000000 --- a/cave/com.raytheon.uf.viz.truecolor.gl/src/com/raytheon/uf/viz/truecolor/gl/Activator.java +++ /dev/null @@ -1,30 +0,0 @@ -package com.raytheon.uf.viz.truecolor.gl; - -import org.osgi.framework.BundleActivator; -import org.osgi.framework.BundleContext; - -public class Activator implements BundleActivator { - - private static BundleContext context; - - static BundleContext getContext() { - return context; - } - - /* - * (non-Javadoc) - * @see org.osgi.framework.BundleActivator#start(org.osgi.framework.BundleContext) - */ - public void start(BundleContext bundleContext) throws Exception { - Activator.context = bundleContext; - } - - /* - * (non-Javadoc) - * @see org.osgi.framework.BundleActivator#stop(org.osgi.framework.BundleContext) - */ - public void stop(BundleContext bundleContext) throws Exception { - Activator.context = null; - } - -} diff --git a/cave/com.raytheon.uf.viz.useradmin/META-INF/MANIFEST.MF b/cave/com.raytheon.uf.viz.useradmin/META-INF/MANIFEST.MF index 4bbda1cc7b..0c48f849ec 100644 --- a/cave/com.raytheon.uf.viz.useradmin/META-INF/MANIFEST.MF +++ b/cave/com.raytheon.uf.viz.useradmin/META-INF/MANIFEST.MF @@ -2,8 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: Useradmin Bundle-SymbolicName: com.raytheon.uf.viz.useradmin;singleton:=true -Bundle-Version: 1.0.0.qualifier -Bundle-Activator: com.raytheon.uf.viz.useradmin.Activator +Bundle-Version: 1.14.0.qualifier Bundle-Vendor: RAYTHEON Require-Bundle: org.eclipse.ui, org.eclipse.core.runtime, @@ -13,6 +12,6 @@ Require-Bundle: org.eclipse.ui, com.raytheon.uf.common.auth;bundle-version="1.12.1174", com.raytheon.uf.common.useradmin;bundle-version="1.0.0", com.raytheon.uf.viz.plugin.nwsauth;bundle-version="1.12.1174" -Bundle-RequiredExecutionEnvironment: JavaSE-1.6 +Bundle-RequiredExecutionEnvironment: JavaSE-1.7 Bundle-ActivationPolicy: lazy Import-Package: com.raytheon.uf.common.plugin.nwsauth.xml diff --git a/cave/com.raytheon.uf.viz.useradmin/src/com/raytheon/uf/viz/useradmin/Activator.java b/cave/com.raytheon.uf.viz.useradmin/src/com/raytheon/uf/viz/useradmin/Activator.java deleted file mode 100644 index ec78f817ce..0000000000 --- a/cave/com.raytheon.uf.viz.useradmin/src/com/raytheon/uf/viz/useradmin/Activator.java +++ /dev/null @@ -1,50 +0,0 @@ -package com.raytheon.uf.viz.useradmin; - -import org.eclipse.ui.plugin.AbstractUIPlugin; -import org.osgi.framework.BundleContext; - -/** - * The activator class controls the plug-in life cycle - */ -public class Activator extends AbstractUIPlugin { - - // The plug-in ID - public static final String PLUGIN_ID = "com.raytheon.uf.viz.useradmin"; //$NON-NLS-1$ - - // The shared instance - private static Activator plugin; - - /** - * The constructor - */ - public Activator() { - } - - /* - * (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 Activator getDefault() { - return plugin; - } - -} diff --git a/cave/com.raytheon.uf.viz.vaa/META-INF/MANIFEST.MF b/cave/com.raytheon.uf.viz.vaa/META-INF/MANIFEST.MF index 38dba845a9..feba280a2f 100644 --- a/cave/com.raytheon.uf.viz.vaa/META-INF/MANIFEST.MF +++ b/cave/com.raytheon.uf.viz.vaa/META-INF/MANIFEST.MF @@ -3,7 +3,6 @@ Bundle-ManifestVersion: 2 Bundle-Name: VAA Plug-in Bundle-SymbolicName: com.raytheon.uf.viz.vaa;singleton:=true Bundle-Version: 1.14.0.qualifier -Bundle-Activator: com.raytheon.uf.viz.vaa.Activator Bundle-Vendor: RAYTHEON Bundle-RequiredExecutionEnvironment: JavaSE-1.7 Bundle-ActivationPolicy: lazy diff --git a/cave/com.raytheon.uf.viz.vaa/src/com/raytheon/uf/viz/vaa/Activator.java b/cave/com.raytheon.uf.viz.vaa/src/com/raytheon/uf/viz/vaa/Activator.java deleted file mode 100644 index a2dcc0801c..0000000000 --- a/cave/com.raytheon.uf.viz.vaa/src/com/raytheon/uf/viz/vaa/Activator.java +++ /dev/null @@ -1,69 +0,0 @@ -/** - * This software was developed and / or modified by Raytheon Company, - * pursuant to Contract DG133W-05-CQ-1067 with the US Government. - * - * U.S. EXPORT CONTROLLED TECHNICAL DATA - * This software product contains export-restricted data whose - * export/transfer/disclosure is restricted by U.S. law. Dissemination - * to non-U.S. persons whether in the United States or abroad requires - * an export license or other authorization. - * - * Contractor Name: Raytheon Company - * Contractor Address: 6825 Pine Street, Suite 340 - * Mail Stop B8 - * Omaha, NE 68106 - * 402.291.0100 - * - * See the AWIPS II Master Rights File ("Master Rights File.pdf") for - * further licensing information. - **/ -package com.raytheon.uf.viz.vaa; - -import org.eclipse.ui.plugin.AbstractUIPlugin; -import org.osgi.framework.BundleContext; - -/** - * The activator class controls the plug-in life cycle - */ -public class Activator extends AbstractUIPlugin { - - // The plug-in ID - public static final String PLUGIN_ID = "com.raytheon.uf.viz.vaa"; - - // The shared instance - private static Activator plugin; - - /** - * The constructor - */ - public Activator() { - } - - /* - * (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 Activator getDefault() { - return plugin; - } - -} diff --git a/cave/com.raytheon.uf.viz.vaa/src/com/raytheon/uf/viz/vaa/rsc/ForecastAshCloudsResourceData.java b/cave/com.raytheon.uf.viz.vaa/src/com/raytheon/uf/viz/vaa/rsc/ForecastAshCloudsResourceData.java index c992f629e1..41191a741d 100644 --- a/cave/com.raytheon.uf.viz.vaa/src/com/raytheon/uf/viz/vaa/rsc/ForecastAshCloudsResourceData.java +++ b/cave/com.raytheon.uf.viz.vaa/src/com/raytheon/uf/viz/vaa/rsc/ForecastAshCloudsResourceData.java @@ -32,8 +32,6 @@ import com.raytheon.uf.viz.core.exception.VizException; import com.raytheon.uf.viz.core.rsc.AbstractRequestableResourceData; import com.raytheon.uf.viz.core.rsc.AbstractVizResource; import com.raytheon.uf.viz.core.rsc.LoadProperties; -import com.raytheon.uf.viz.core.status.StatusConstants; -import com.raytheon.uf.viz.vaa.Activator; /** * ResourceData for VAA Forecast Ash Clouds data @@ -52,13 +50,15 @@ import com.raytheon.uf.viz.vaa.Activator; */ @XmlAccessorType(XmlAccessType.NONE) @XmlType(name = "forecastAshCloudsResourceData") -public class ForecastAshCloudsResourceData extends AbstractRequestableResourceData { - private static final transient IUFStatusHandler statusHandler = UFStatus.getHandler(ForecastAshCloudsResourceData.class); - +public class ForecastAshCloudsResourceData extends + AbstractRequestableResourceData { + private static final transient IUFStatusHandler statusHandler = UFStatus + .getHandler(ForecastAshCloudsResourceData.class); + public ForecastAshCloudsResourceData() { // TODO Auto-generated constructor stub } - + @Override public boolean equals(Object obj) { if (!super.equals(obj)) { @@ -68,7 +68,7 @@ public class ForecastAshCloudsResourceData extends AbstractRequestableResourceDa if (obj instanceof ForecastAshCloudsResourceData == false) { return false; } - + return true; } diff --git a/cave/com.raytheon.uf.viz.vaa/src/com/raytheon/uf/viz/vaa/rsc/VAAResourceData.java b/cave/com.raytheon.uf.viz.vaa/src/com/raytheon/uf/viz/vaa/rsc/VAAResourceData.java index 2163760c78..d38af28e13 100644 --- a/cave/com.raytheon.uf.viz.vaa/src/com/raytheon/uf/viz/vaa/rsc/VAAResourceData.java +++ b/cave/com.raytheon.uf.viz.vaa/src/com/raytheon/uf/viz/vaa/rsc/VAAResourceData.java @@ -32,8 +32,6 @@ import com.raytheon.uf.viz.core.exception.VizException; import com.raytheon.uf.viz.core.rsc.AbstractRequestableResourceData; import com.raytheon.uf.viz.core.rsc.AbstractVizResource; import com.raytheon.uf.viz.core.rsc.LoadProperties; -import com.raytheon.uf.viz.core.status.StatusConstants; -import com.raytheon.uf.viz.vaa.Activator; /** * ResourceData for Volcanic Ash Advisories data @@ -53,12 +51,13 @@ import com.raytheon.uf.viz.vaa.Activator; @XmlAccessorType(XmlAccessType.NONE) @XmlType(name = "vaaResourceData") public class VAAResourceData extends AbstractRequestableResourceData { - private static final transient IUFStatusHandler statusHandler = UFStatus.getHandler(VAAResourceData.class); - + private static final transient IUFStatusHandler statusHandler = UFStatus + .getHandler(VAAResourceData.class); + public VAAResourceData() { // TODO Auto-generated constructor stub } - + @Override public boolean equals(Object obj) { if (!super.equals(obj)) { @@ -68,7 +67,7 @@ public class VAAResourceData extends AbstractRequestableResourceData { if (obj instanceof VAAResourceData == false) { return false; } - + return true; } @@ -90,6 +89,6 @@ public class VAAResourceData extends AbstractRequestableResourceData { } } return rsc; - } + } } diff --git a/cave/com.raytheon.uf.viz.vil/META-INF/MANIFEST.MF b/cave/com.raytheon.uf.viz.vil/META-INF/MANIFEST.MF index 32a59cc878..87b3c2461d 100644 --- a/cave/com.raytheon.uf.viz.vil/META-INF/MANIFEST.MF +++ b/cave/com.raytheon.uf.viz.vil/META-INF/MANIFEST.MF @@ -3,7 +3,6 @@ Bundle-ManifestVersion: 2 Bundle-Name: Vil Plug-in Bundle-SymbolicName: com.raytheon.uf.viz.vil;singleton:=true Bundle-Version: 1.14.0.qualifier -Bundle-Activator: com.raytheon.uf.viz.vil.Activator Bundle-Vendor: RAYTHEON Require-Bundle: org.eclipse.ui, org.eclipse.core.runtime, diff --git a/cave/com.raytheon.uf.viz.vil/src/com/raytheon/uf/viz/vil/Activator.java b/cave/com.raytheon.uf.viz.vil/src/com/raytheon/uf/viz/vil/Activator.java deleted file mode 100644 index 6e5873ab0e..0000000000 --- a/cave/com.raytheon.uf.viz.vil/src/com/raytheon/uf/viz/vil/Activator.java +++ /dev/null @@ -1,69 +0,0 @@ -/** - * This software was developed and / or modified by Raytheon Company, - * pursuant to Contract DG133W-05-CQ-1067 with the US Government. - * - * U.S. EXPORT CONTROLLED TECHNICAL DATA - * This software product contains export-restricted data whose - * export/transfer/disclosure is restricted by U.S. law. Dissemination - * to non-U.S. persons whether in the United States or abroad requires - * an export license or other authorization. - * - * Contractor Name: Raytheon Company - * Contractor Address: 6825 Pine Street, Suite 340 - * Mail Stop B8 - * Omaha, NE 68106 - * 402.291.0100 - * - * See the AWIPS II Master Rights File ("Master Rights File.pdf") for - * further licensing information. - **/ -package com.raytheon.uf.viz.vil; - -import org.eclipse.ui.plugin.AbstractUIPlugin; -import org.osgi.framework.BundleContext; - -/** - * The activator class controls the plug-in life cycle - */ -public class Activator extends AbstractUIPlugin { - - // The plug-in ID - public static final String PLUGIN_ID = "com.raytheon.uf.viz.vil"; - - // The shared instance - private static Activator plugin; - - /** - * The constructor - */ - public Activator() { - } - - /* - * (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 Activator getDefault() { - return plugin; - } - -} diff --git a/cave/com.raytheon.viz.bcd/META-INF/MANIFEST.MF b/cave/com.raytheon.viz.bcd/META-INF/MANIFEST.MF index 8e8a432d7d..b7211bbfa5 100644 --- a/cave/com.raytheon.viz.bcd/META-INF/MANIFEST.MF +++ b/cave/com.raytheon.viz.bcd/META-INF/MANIFEST.MF @@ -3,7 +3,6 @@ Bundle-ManifestVersion: 2 Bundle-Name: BCD Plug-in Bundle-SymbolicName: com.raytheon.viz.bcd;singleton:=true Bundle-Version: 1.14.0.qualifier -Bundle-Activator: com.raytheon.viz.bcd.Activator Bundle-Vendor: Raytheon Require-Bundle: org.eclipse.ui, org.eclipse.core.runtime, diff --git a/cave/com.raytheon.viz.bcd/src/com/raytheon/viz/bcd/Activator.java b/cave/com.raytheon.viz.bcd/src/com/raytheon/viz/bcd/Activator.java deleted file mode 100644 index 8e6b4b15f0..0000000000 --- a/cave/com.raytheon.viz.bcd/src/com/raytheon/viz/bcd/Activator.java +++ /dev/null @@ -1,69 +0,0 @@ -/** - * This software was developed and / or modified by Raytheon Company, - * pursuant to Contract DG133W-05-CQ-1067 with the US Government. - * - * U.S. EXPORT CONTROLLED TECHNICAL DATA - * This software product contains export-restricted data whose - * export/transfer/disclosure is restricted by U.S. law. Dissemination - * to non-U.S. persons whether in the United States or abroad requires - * an export license or other authorization. - * - * Contractor Name: Raytheon Company - * Contractor Address: 6825 Pine Street, Suite 340 - * Mail Stop B8 - * Omaha, NE 68106 - * 402.291.0100 - * - * See the AWIPS II Master Rights File ("Master Rights File.pdf") for - * further licensing information. - **/ -package com.raytheon.viz.bcd; - -import org.eclipse.ui.plugin.AbstractUIPlugin; -import org.osgi.framework.BundleContext; - -/** - * The activator class controls the plug-in life cycle - */ -public class Activator extends AbstractUIPlugin { - - // The plug-in ID - public static final String PLUGIN_ID = "com.raytheon.viz.bcd"; - - // The shared instance - private static Activator plugin; - - /** - * The constructor - */ - public Activator() { - } - - /* - * (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 Activator getDefault() { - return plugin; - } - -} diff --git a/cave/com.raytheon.viz.core.graphing/META-INF/MANIFEST.MF b/cave/com.raytheon.viz.core.graphing/META-INF/MANIFEST.MF index 0ee177e267..656229fc7c 100644 --- a/cave/com.raytheon.viz.core.graphing/META-INF/MANIFEST.MF +++ b/cave/com.raytheon.viz.core.graphing/META-INF/MANIFEST.MF @@ -3,7 +3,6 @@ Bundle-ManifestVersion: 2 Bundle-Name: Graphing Plug-in Bundle-SymbolicName: com.raytheon.viz.core.graphing;singleton:=true Bundle-Version: 1.14.0.qualifier -Bundle-Activator: com.raytheon.viz.core.graphing.Activator Bundle-Vendor: Raytheon Require-Bundle: org.eclipse.ui, org.eclipse.core.runtime, diff --git a/cave/com.raytheon.viz.core.graphing/src/com/raytheon/viz/core/graphing/Activator.java b/cave/com.raytheon.viz.core.graphing/src/com/raytheon/viz/core/graphing/Activator.java deleted file mode 100644 index b90b62ae77..0000000000 --- a/cave/com.raytheon.viz.core.graphing/src/com/raytheon/viz/core/graphing/Activator.java +++ /dev/null @@ -1,69 +0,0 @@ -/** - * This software was developed and / or modified by Raytheon Company, - * pursuant to Contract DG133W-05-CQ-1067 with the US Government. - * - * U.S. EXPORT CONTROLLED TECHNICAL DATA - * This software product contains export-restricted data whose - * export/transfer/disclosure is restricted by U.S. law. Dissemination - * to non-U.S. persons whether in the United States or abroad requires - * an export license or other authorization. - * - * Contractor Name: Raytheon Company - * Contractor Address: 6825 Pine Street, Suite 340 - * Mail Stop B8 - * Omaha, NE 68106 - * 402.291.0100 - * - * See the AWIPS II Master Rights File ("Master Rights File.pdf") for - * further licensing information. - **/ -package com.raytheon.viz.core.graphing; - -import org.eclipse.ui.plugin.AbstractUIPlugin; -import org.osgi.framework.BundleContext; - -/** - * The activator class controls the plug-in life cycle - */ -public class Activator extends AbstractUIPlugin { - - // The plug-in ID - public static final String PLUGIN_ID = "com.raytheon.viz.core.graphing"; - - // The shared instance - private static Activator plugin; - - /** - * The constructor - */ - public Activator() { - plugin = this; - } - - /* - * (non-Javadoc) - * @see org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext) - */ - public void start(BundleContext context) throws Exception { - super.start(context); - } - - /* - * (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 Activator getDefault() { - return plugin; - } - -} diff --git a/cave/com.raytheon.viz.hydrobase/META-INF/MANIFEST.MF b/cave/com.raytheon.viz.hydrobase/META-INF/MANIFEST.MF index 316beee94a..41386279e5 100644 --- a/cave/com.raytheon.viz.hydrobase/META-INF/MANIFEST.MF +++ b/cave/com.raytheon.viz.hydrobase/META-INF/MANIFEST.MF @@ -2,8 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: Hydrobase Plug-in Bundle-SymbolicName: com.raytheon.viz.hydrobase;singleton:=true -Bundle-Version: 1.12.1174.qualifier -Bundle-Activator: com.raytheon.viz.hydrobase.Activator +Bundle-Version: 1.14.0.qualifier Bundle-Vendor: Raytheon Require-Bundle: org.eclipse.ui, org.eclipse.core.runtime, @@ -16,5 +15,5 @@ Require-Bundle: org.eclipse.ui, com.raytheon.uf.common.serialization.comm, com.raytheon.uf.viz.localization;bundle-version="1.12.1174" Bundle-ActivationPolicy: lazy -Bundle-RequiredExecutionEnvironment: JavaSE-1.6 +Bundle-RequiredExecutionEnvironment: JavaSE-1.7 Import-Package: com.raytheon.uf.common.ohd diff --git a/cave/com.raytheon.viz.hydrobase/src/com/raytheon/viz/hydrobase/Activator.java b/cave/com.raytheon.viz.hydrobase/src/com/raytheon/viz/hydrobase/Activator.java deleted file mode 100644 index d0c87e5cc9..0000000000 --- a/cave/com.raytheon.viz.hydrobase/src/com/raytheon/viz/hydrobase/Activator.java +++ /dev/null @@ -1,69 +0,0 @@ -/** - * This software was developed and / or modified by Raytheon Company, - * pursuant to Contract DG133W-05-CQ-1067 with the US Government. - * - * U.S. EXPORT CONTROLLED TECHNICAL DATA - * This software product contains export-restricted data whose - * export/transfer/disclosure is restricted by U.S. law. Dissemination - * to non-U.S. persons whether in the United States or abroad requires - * an export license or other authorization. - * - * Contractor Name: Raytheon Company - * Contractor Address: 6825 Pine Street, Suite 340 - * Mail Stop B8 - * Omaha, NE 68106 - * 402.291.0100 - * - * See the AWIPS II Master Rights File ("Master Rights File.pdf") for - * further licensing information. - **/ -package com.raytheon.viz.hydrobase; - -import org.eclipse.ui.plugin.AbstractUIPlugin; -import org.osgi.framework.BundleContext; - -/** - * The activator class controls the plug-in life cycle - */ -public class Activator extends AbstractUIPlugin { - - // The plug-in ID - public static final String PLUGIN_ID = "com.raytheon.viz.hydrobase"; - - // The shared instance - private static Activator plugin; - - /** - * The constructor - */ - public Activator() { - } - - /* - * (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 Activator getDefault() { - return plugin; - } - -} diff --git a/cave/com.raytheon.viz.textworkstation/META-INF/MANIFEST.MF b/cave/com.raytheon.viz.textworkstation/META-INF/MANIFEST.MF index 99b918ad41..7f4ee7b89b 100644 --- a/cave/com.raytheon.viz.textworkstation/META-INF/MANIFEST.MF +++ b/cave/com.raytheon.viz.textworkstation/META-INF/MANIFEST.MF @@ -2,8 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: Textworkstation Plug-in Bundle-SymbolicName: com.raytheon.viz.textworkstation;singleton:=true -Bundle-Version: 1.12.1174.qualifier -Bundle-Activator: com.raytheon.viz.textworkstation.Activator +Bundle-Version: 1.14.0.qualifier Bundle-Vendor: Raytheon Require-Bundle: org.eclipse.ui, com.raytheon.viz.core, @@ -14,4 +13,4 @@ Require-Bundle: org.eclipse.ui, com.raytheon.uf.viz.application;bundle-version="1.0.0" Bundle-ActivationPolicy: lazy Export-Package: com.raytheon.viz.textworkstation -Bundle-RequiredExecutionEnvironment: JavaSE-1.6 +Bundle-RequiredExecutionEnvironment: JavaSE-1.7 diff --git a/cave/com.raytheon.viz.textworkstation/src/com/raytheon/viz/textworkstation/Activator.java b/cave/com.raytheon.viz.textworkstation/src/com/raytheon/viz/textworkstation/Activator.java deleted file mode 100644 index c50a2c73ad..0000000000 --- a/cave/com.raytheon.viz.textworkstation/src/com/raytheon/viz/textworkstation/Activator.java +++ /dev/null @@ -1,85 +0,0 @@ -/** - * This software was developed and / or modified by Raytheon Company, - * pursuant to Contract DG133W-05-CQ-1067 with the US Government. - * - * U.S. EXPORT CONTROLLED TECHNICAL DATA - * This software product contains export-restricted data whose - * export/transfer/disclosure is restricted by U.S. law. Dissemination - * to non-U.S. persons whether in the United States or abroad requires - * an export license or other authorization. - * - * Contractor Name: Raytheon Company - * Contractor Address: 6825 Pine Street, Suite 340 - * Mail Stop B8 - * Omaha, NE 68106 - * 402.291.0100 - * - * See the AWIPS II Master Rights File ("Master Rights File.pdf") for - * further licensing information. - **/ - -package com.raytheon.viz.textworkstation; - -import org.eclipse.ui.plugin.AbstractUIPlugin; -import org.osgi.framework.BundleContext; - -/** - * The activator class controls the plug-in life cycle - * - *
- * - * SOFTWARE HISTORY - * - * Date Ticket# Engineer Description - * ------------ ---------- ----------- -------------------------- - * 10/11/2007 482 grichard Initial creation. - * - *- * - * @author grichard - * - */ -public class Activator extends AbstractUIPlugin { - - // The plug-in ID - public static final String PLUGIN_ID = "com.raytheon.viz.textworkstation"; - - // The shared instance - private static Activator plugin; - - /** - * The constructor - */ - public Activator() { - } - - /* - * (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 Activator getDefault() { - return plugin; - } - -} diff --git a/cave/com.raytheon.viz.ui.tools.looping/META-INF/MANIFEST.MF b/cave/com.raytheon.viz.ui.tools.looping/META-INF/MANIFEST.MF index e4eaa9007d..5f1d828930 100644 --- a/cave/com.raytheon.viz.ui.tools.looping/META-INF/MANIFEST.MF +++ b/cave/com.raytheon.viz.ui.tools.looping/META-INF/MANIFEST.MF @@ -2,8 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: Looping Plug-in Bundle-SymbolicName: com.raytheon.viz.ui.tools.looping;singleton:=true -Bundle-Version: 1.12.1174.qualifier -Bundle-Activator: com.raytheon.viz.ui.tools.looping.Activator +Bundle-Version: 1.14.0.qualifier Bundle-Vendor: Raytheon Require-Bundle: org.eclipse.ui, org.eclipse.core.runtime, @@ -11,4 +10,4 @@ Require-Bundle: org.eclipse.ui, com.raytheon.viz.core, org.geotools Bundle-ActivationPolicy: lazy -Bundle-RequiredExecutionEnvironment: JavaSE-1.6 +Bundle-RequiredExecutionEnvironment: JavaSE-1.7 diff --git a/cave/com.raytheon.viz.ui.tools.looping/src/com/raytheon/viz/ui/tools/looping/Activator.java b/cave/com.raytheon.viz.ui.tools.looping/src/com/raytheon/viz/ui/tools/looping/Activator.java deleted file mode 100644 index 1733435e9f..0000000000 --- a/cave/com.raytheon.viz.ui.tools.looping/src/com/raytheon/viz/ui/tools/looping/Activator.java +++ /dev/null @@ -1,69 +0,0 @@ -/** - * This software was developed and / or modified by Raytheon Company, - * pursuant to Contract DG133W-05-CQ-1067 with the US Government. - * - * U.S. EXPORT CONTROLLED TECHNICAL DATA - * This software product contains export-restricted data whose - * export/transfer/disclosure is restricted by U.S. law. Dissemination - * to non-U.S. persons whether in the United States or abroad requires - * an export license or other authorization. - * - * Contractor Name: Raytheon Company - * Contractor Address: 6825 Pine Street, Suite 340 - * Mail Stop B8 - * Omaha, NE 68106 - * 402.291.0100 - * - * See the AWIPS II Master Rights File ("Master Rights File.pdf") for - * further licensing information. - **/ -package com.raytheon.viz.ui.tools.looping; - -import org.eclipse.ui.plugin.AbstractUIPlugin; -import org.osgi.framework.BundleContext; - -/** - * The activator class controls the plug-in life cycle - */ -public class Activator extends AbstractUIPlugin { - - // The plug-in ID - public static final String PLUGIN_ID = "com.raytheon.viz.ui.tools.looping"; - - // The shared instance - private static Activator plugin; - - /** - * The constructor - */ - public Activator() { - plugin = this; - } - - /* - * (non-Javadoc) - * @see org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext) - */ - public void start(BundleContext context) throws Exception { - super.start(context); - } - - /* - * (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 Activator getDefault() { - return plugin; - } - -} diff --git a/cave/com.raytheon.viz.ui.tools.map/META-INF/MANIFEST.MF b/cave/com.raytheon.viz.ui.tools.map/META-INF/MANIFEST.MF index 3756c6c088..b829ea3764 100644 --- a/cave/com.raytheon.viz.ui.tools.map/META-INF/MANIFEST.MF +++ b/cave/com.raytheon.viz.ui.tools.map/META-INF/MANIFEST.MF @@ -2,8 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: Map Tools Plug-in Bundle-SymbolicName: com.raytheon.viz.ui.tools.map;singleton:=true -Bundle-Version: 1.12.1174.qualifier -Bundle-Activator: com.raytheon.viz.ui.tools.map.Activator +Bundle-Version: 1.14.0.qualifier Bundle-Vendor: Raytheon Require-Bundle: org.eclipse.ui, org.eclipse.core.runtime, @@ -11,4 +10,4 @@ Require-Bundle: org.eclipse.ui, com.raytheon.viz.core Bundle-ActivationPolicy: lazy Export-Package: com.raytheon.viz.ui.tools.map -Bundle-RequiredExecutionEnvironment: JavaSE-1.6 +Bundle-RequiredExecutionEnvironment: JavaSE-1.7 diff --git a/cave/com.raytheon.viz.ui.tools.map/src/com/raytheon/viz/ui/tools/map/Activator.java b/cave/com.raytheon.viz.ui.tools.map/src/com/raytheon/viz/ui/tools/map/Activator.java deleted file mode 100644 index 6baa3aba6b..0000000000 --- a/cave/com.raytheon.viz.ui.tools.map/src/com/raytheon/viz/ui/tools/map/Activator.java +++ /dev/null @@ -1,70 +0,0 @@ -/** - * This software was developed and / or modified by Raytheon Company, - * pursuant to Contract DG133W-05-CQ-1067 with the US Government. - * - * U.S. EXPORT CONTROLLED TECHNICAL DATA - * This software product contains export-restricted data whose - * export/transfer/disclosure is restricted by U.S. law. Dissemination - * to non-U.S. persons whether in the United States or abroad requires - * an export license or other authorization. - * - * Contractor Name: Raytheon Company - * Contractor Address: 6825 Pine Street, Suite 340 - * Mail Stop B8 - * Omaha, NE 68106 - * 402.291.0100 - * - * See the AWIPS II Master Rights File ("Master Rights File.pdf") for - * further licensing information. - **/ - -package com.raytheon.viz.ui.tools.map; - -import org.eclipse.ui.plugin.AbstractUIPlugin; -import org.osgi.framework.BundleContext; - -/** - * The activator class controls the plug-in life cycle - */ -public class Activator extends AbstractUIPlugin { - - // The plug-in ID - public static final String PLUGIN_ID = "com.raytheon.viz.ui.tools.map"; - - // The shared instance - private static Activator plugin; - - /** - * The constructor - */ - public Activator() { - plugin = this; - } - - /* - * (non-Javadoc) - * @see org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext) - */ - public void start(BundleContext context) throws Exception { - super.start(context); - } - - /* - * (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 Activator getDefault() { - return plugin; - } - -} diff --git a/cave/com.raytheon.viz.warnings/META-INF/MANIFEST.MF b/cave/com.raytheon.viz.warnings/META-INF/MANIFEST.MF index 0021f4abdb..d0114b43cf 100644 --- a/cave/com.raytheon.viz.warnings/META-INF/MANIFEST.MF +++ b/cave/com.raytheon.viz.warnings/META-INF/MANIFEST.MF @@ -3,7 +3,6 @@ Bundle-ManifestVersion: 2 Bundle-Name: Warnings Plug-in Bundle-SymbolicName: com.raytheon.viz.warnings;singleton:=true Bundle-Version: 1.14.0.qualifier -Bundle-Activator: com.raytheon.viz.warnings.Activator Bundle-Vendor: Raytheon Require-Bundle: org.eclipse.ui, org.eclipse.core.runtime, diff --git a/cave/com.raytheon.viz.warnings/src/com/raytheon/viz/warnings/Activator.java b/cave/com.raytheon.viz.warnings/src/com/raytheon/viz/warnings/Activator.java deleted file mode 100644 index 2b13bd734a..0000000000 --- a/cave/com.raytheon.viz.warnings/src/com/raytheon/viz/warnings/Activator.java +++ /dev/null @@ -1,69 +0,0 @@ -/** - * This software was developed and / or modified by Raytheon Company, - * pursuant to Contract DG133W-05-CQ-1067 with the US Government. - * - * U.S. EXPORT CONTROLLED TECHNICAL DATA - * This software product contains export-restricted data whose - * export/transfer/disclosure is restricted by U.S. law. Dissemination - * to non-U.S. persons whether in the United States or abroad requires - * an export license or other authorization. - * - * Contractor Name: Raytheon Company - * Contractor Address: 6825 Pine Street, Suite 340 - * Mail Stop B8 - * Omaha, NE 68106 - * 402.291.0100 - * - * See the AWIPS II Master Rights File ("Master Rights File.pdf") for - * further licensing information. - **/ -package com.raytheon.viz.warnings; - -import org.eclipse.ui.plugin.AbstractUIPlugin; -import org.osgi.framework.BundleContext; - -/** - * The activator class controls the plug-in life cycle - */ -public class Activator extends AbstractUIPlugin { - - // The plug-in ID - public static final String PLUGIN_ID = "com.raytheon.viz.warnings"; - - // The shared instance - private static Activator plugin; - - /** - * The constructor - */ - public Activator() { - } - - /* - * (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 Activator getDefault() { - return plugin; - } - -} diff --git a/cave/com.raytheon.viz.xdat/META-INF/MANIFEST.MF b/cave/com.raytheon.viz.xdat/META-INF/MANIFEST.MF index 15639762d6..8413a6bbd6 100644 --- a/cave/com.raytheon.viz.xdat/META-INF/MANIFEST.MF +++ b/cave/com.raytheon.viz.xdat/META-INF/MANIFEST.MF @@ -2,8 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: Xdat Plug-in Bundle-SymbolicName: com.raytheon.viz.xdat;singleton:=true -Bundle-Version: 1.12.1174.qualifier -Bundle-Activator: com.raytheon.viz.xdat.Activator +Bundle-Version: 1.14.0.qualifier Bundle-Vendor: Raytheon Require-Bundle: org.eclipse.ui, org.eclipse.core.runtime, diff --git a/cave/com.raytheon.viz.xdat/src/com/raytheon/viz/xdat/Activator.java b/cave/com.raytheon.viz.xdat/src/com/raytheon/viz/xdat/Activator.java deleted file mode 100644 index 13ceb323d4..0000000000 --- a/cave/com.raytheon.viz.xdat/src/com/raytheon/viz/xdat/Activator.java +++ /dev/null @@ -1,75 +0,0 @@ -/** - * This software was developed and / or modified by Raytheon Company, - * pursuant to Contract DG133W-05-CQ-1067 with the US Government. - * - * U.S. EXPORT CONTROLLED TECHNICAL DATA - * This software product contains export-restricted data whose - * export/transfer/disclosure is restricted by U.S. law. Dissemination - * to non-U.S. persons whether in the United States or abroad requires - * an export license or other authorization. - * - * Contractor Name: Raytheon Company - * Contractor Address: 6825 Pine Street, Suite 340 - * Mail Stop B8 - * Omaha, NE 68106 - * 402.291.0100 - * - * See the AWIPS II Master Rights File ("Master Rights File.pdf") for - * further licensing information. - **/ -package com.raytheon.viz.xdat; - -import org.eclipse.ui.plugin.AbstractUIPlugin; -import org.osgi.framework.BundleContext; - -/** - * The activator class controls the plug-in life cycle - */ -public class Activator extends AbstractUIPlugin { - - // The plug-in ID - public static final String PLUGIN_ID = "com.raytheon.viz.xdat"; - - // The shared instance - private static Activator plugin; - - /** - * The constructor - */ - public Activator() { - } - - /* - * (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 Activator getDefault() { - return plugin; - } - -}