Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
af3
AF3
Commits
81d7c442
Commit
81d7c442
authored
Jan 10, 2011
by
Florian Hölzl
Browse files
initial plugin setup
parent
849cff82
Changes
5
Hide whitespace changes
Inline
Side-by-side
org.fortiss.af3.project/trunk/.classpath
0 → 100644
View file @
81d7c442
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<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=
"src"
path=
"src"
/>
<classpathentry
kind=
"src"
path=
"generated-src"
/>
<classpathentry
kind=
"output"
path=
"build"
/>
</classpath>
org.fortiss.af3.project/trunk/.project
0 → 100644
View file @
81d7c442
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>
org.fortiss.af3.project
</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>
</buildSpec>
<natures>
<nature>
org.eclipse.pde.PluginNature
</nature>
<nature>
org.eclipse.jdt.core.javanature
</nature>
</natures>
</projectDescription>
org.fortiss.af3.project/trunk/META-INF/MANIFEST.MF
0 → 100644
View file @
81d7c442
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: AF3 Project Core
Bundle-SymbolicName: org.fortiss.af3.project
Bundle-Version: 1.0.0.qualifier
Bundle-Activator: org.fortiss.af3.project.AF3ProjectActivator
Bundle-Vendor: fortiss
Require-Bundle: org.fortiss.tooling.kernel;bundle-version="1.0.0";visibility:=reexport
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Bundle-ActivationPolicy: lazy
org.fortiss.af3.project/trunk/build.properties
0 → 100644
View file @
81d7c442
source..
=
src/,
\
generated-src/
output..
=
build/
bin.includes
=
META-INF/,
\
.
org.fortiss.af3.project/trunk/src/org/fortiss/af3/project/AF3ProjectActivator.java
0 → 100644
View file @
81d7c442
package
org.fortiss.af3.project
;
import
org.eclipse.ui.plugin.AbstractUIPlugin
;
import
org.osgi.framework.BundleContext
;
/**
* The activator class controls the plug-in life cycle
*/
public
class
AF3ProjectActivator
extends
AbstractUIPlugin
{
// The plug-in ID
public
static
final
String
PLUGIN_ID
=
"org.fortiss.af3.project"
;
//$NON-NLS-1$
// The shared instance
private
static
AF3ProjectActivator
plugin
;
/**
* The constructor
*/
public
AF3ProjectActivator
()
{
}
/*
* (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
AF3ProjectActivator
getDefault
()
{
return
plugin
;
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment