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

org.fortiss.tooling.base plugin setup

parent fbf28a64
No related branches found
No related tags found
No related merge requests found
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="generated-src"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="output" path="build"/>
</classpath>
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>org.fortiss.tooling.base</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.pde.ManifestBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.pde.SchemaBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>edu.tum.cs.ccsm.dev_tools.gen_src.RemoveWarningsBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.pde.PluginNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Tooling Compatibility CCTS
Bundle-SymbolicName: org.fortiss.tooling.base
Bundle-Version: 0.0.1.qualifier
Bundle-Activator: org.fortiss.tooling.base.ToolingBaseActivator
Bundle-Vendor: fortiss
Require-Bundle: org.fortiss.tooling.kernel;bundle-version="0.0.1"
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Bundle-ActivationPolicy: lazy
source.. = src/,\
generated-src/
output.. = build/
bin.includes = META-INF/,\
.
/**
*
*/
package org.fortiss.tooling.base;
import org.eclipse.ui.plugin.AbstractUIPlugin;
import org.osgi.framework.BundleContext;
/**
* @author hoelzlf
*
*/
public class ToolingBaseActivator extends AbstractUIPlugin {
/** The plug-in ID. */
public static final String PLUGIN_ID = "org.fortiss.tooling.base"; //$NON-NLS-1$
/** The shared instance. */
private static ToolingBaseActivator plugin;
/** Constructor. */
public ToolingBaseActivator() {
// do nothing
}
/** {@inheritDoc} */
@Override
public void start(BundleContext context) throws Exception {
super.start(context);
plugin = this;
}
/** {@inheritDoc} */
@Override
public void stop(BundleContext context) throws Exception {
plugin = null;
super.stop(context);
}
/** Returns the shared instance. */
public static ToolingBaseActivator getDefault() {
return 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