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
5cdeeb0a
Commit
5cdeeb0a
authored
Jun 06, 2011
by
Florian Hölzl
Browse files
added UI plugins
parent
edfdbb35
Changes
5
Show whitespace changes
Inline
Side-by-side
org.fortiss.af3.project.ui/trunk/.classpath
0 → 100644
View file @
5cdeeb0a
<?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=
"output"
path=
"build"
/>
</classpath>
org.fortiss.af3.project.ui/trunk/.project
0 → 100644
View file @
5cdeeb0a
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>
org.fortiss.af3.project.ui
</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.ui/trunk/META-INF/MANIFEST.MF
0 → 100644
View file @
5cdeeb0a
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Fortiss AF3 Project UI
Bundle-SymbolicName: org.fortiss.af3.project.ui
Bundle-Version: 1.0.0.qualifier
Bundle-Activator: org.fortiss.af3.project.ui.Activator
Require-Bundle: org.fortiss.af3.project;bundle-version="1.0.0";visibility:=reexport,
org.fortiss.tooling.base.ui;bundle-version="1.0.0";visibility:=reexport
Bundle-ActivationPolicy: lazy
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Bundle-Vendor: fortiss
org.fortiss.af3.project.ui/trunk/build.properties
0 → 100644
View file @
5cdeeb0a
source..
=
src/
output..
=
build/
bin.includes
=
META-INF/,
\
.
org.fortiss.af3.project.ui/trunk/src/org/fortiss/af3/project/ui/Activator.java
0 → 100644
View file @
5cdeeb0a
package
org.fortiss.af3.project.ui
;
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
=
"org.fortiss.af3.project.ui"
;
//$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
;
}
}
Write
Preview
Supports
Markdown
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