Skip to content
Snippets Groups Projects
Commit e95a728c authored by Florian Hölzl's avatar Florian Hölzl
Browse files

fixed PLUGIN_ID

refs 330
parent 61736b6a
No related branches found
No related tags found
No related merge requests found
......@@ -27,12 +27,13 @@ import org.osgi.framework.BundleContext;
* @author hoelzl
* @author $Author$
* @version $Rev$
* @ConQAT.Rating YELLOW Hash: C2C3F8B958211307EAE1AC2650F921EC
* @ConQAT.Rating YELLOW Hash: 9C25996DB34209BD4DDA8E8FA68056E4
*/
public class ToolingBaseUIActivator extends AbstractUIPlugin {
/** The plug-in ID. */
public static final String PLUGIN_ID = "org.fortiss.tooling.base.ui"; //$NON-NLS-1$
public static final String PLUGIN_ID = ToolingBaseUIActivator.class
.getPackage().getName(); //$NON-NLS-1$
/** The shared instance. */
private static ToolingBaseUIActivator plugin;
......
......@@ -31,7 +31,8 @@ import org.osgi.framework.BundleContext;
public class ToolingBaseActivator extends Plugin {
/** The plug-in ID. */
public static final String PLUGIN_ID = "org.fortiss.tooling.base"; //$NON-NLS-1$
public static final String PLUGIN_ID = ToolingBaseActivator.class
.getPackage().getName(); //$NON-NLS-1$
/** The shared instance. */
private static ToolingBaseActivator plugin;
......
......@@ -28,12 +28,13 @@ import org.osgi.framework.BundleContext;
* @author hoelzl
* @author $Author$
* @version $Rev$
* @ConQAT.Rating GREEN Hash: EFBA6B7C4976A505A4B01B242107E42A
* @ConQAT.Rating GREEN Hash: E322BFA05D3A4FCC75BDA06E50AC62CC
*/
public class ToolingKernelUIActivator extends AbstractUIPlugin {
/** The plug-in ID. */
public static final String PLUGIN_ID = "org.fortiss.tooling.kernel.ui"; //$NON-NLS-1$
public static final String PLUGIN_ID = ToolingKernelUIActivator.class
.getPackage().getName(); //$NON-NLS-1$
/** The shared instance. */
private static ToolingKernelUIActivator plugin;
......
......@@ -31,7 +31,8 @@ import org.osgi.framework.BundleContext;
public class ToolingKernelActivator extends Plugin {
/** The plug-in ID. */
public static final String PLUGIN_ID = "org.fortiss.tooling.kernel"; //$NON-NLS-1$
public static final String PLUGIN_ID = ToolingKernelActivator.class
.getPackage().getName(); //$NON-NLS-1$
/** The shared instance. */
private static ToolingKernelActivator plugin;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment