Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsefftinge2008-02-26 08:56:26 +0000
committersefftinge2008-02-26 08:56:26 +0000
commit1ad5eb32d75763b7ab79d7aee480c05b657a51b4 (patch)
tree0b20f0b070f1b1ba0917dd6c83d2e967850fdfc4
parentebc177783d2614bd09efc4527ef95de6f52ffb27 (diff)
downloadorg.eclipse.xpand-1ad5eb32d75763b7ab79d7aee480c05b657a51b4.tar.gz
org.eclipse.xpand-1ad5eb32d75763b7ab79d7aee480c05b657a51b4.tar.xz
org.eclipse.xpand-1ad5eb32d75763b7ab79d7aee480c05b657a51b4.zip
initial
-rw-r--r--plugins/org.eclipse.xpand3.ui/.classpath7
-rw-r--r--plugins/org.eclipse.xpand3.ui/.project28
-rw-r--r--plugins/org.eclipse.xpand3.ui/.settings/org.eclipse.jdt.core.prefs7
-rw-r--r--plugins/org.eclipse.xpand3.ui/META-INF/MANIFEST.MF11
-rw-r--r--plugins/org.eclipse.xpand3.ui/build.properties4
-rw-r--r--plugins/org.eclipse.xpand3.ui/src/org/eclipse/xpand3/ui/Activator.java50
-rw-r--r--plugins/org.eclipse.xpand3/.classpath7
-rw-r--r--plugins/org.eclipse.xpand3/.project28
-rw-r--r--plugins/org.eclipse.xpand3/.settings/org.eclipse.jdt.core.prefs7
-rw-r--r--plugins/org.eclipse.xpand3/META-INF/MANIFEST.MF7
-rw-r--r--plugins/org.eclipse.xpand3/build.properties4
11 files changed, 160 insertions, 0 deletions
diff --git a/plugins/org.eclipse.xpand3.ui/.classpath b/plugins/org.eclipse.xpand3.ui/.classpath
new file mode 100644
index 00000000..304e8618
--- /dev/null
+++ b/plugins/org.eclipse.xpand3.ui/.classpath
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+ <classpathentry kind="src" path="src"/>
+ <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5"/>
+ <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
+ <classpathentry kind="output" path="bin"/>
+</classpath>
diff --git a/plugins/org.eclipse.xpand3.ui/.project b/plugins/org.eclipse.xpand3.ui/.project
new file mode 100644
index 00000000..9b8fb4b8
--- /dev/null
+++ b/plugins/org.eclipse.xpand3.ui/.project
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>org.eclipse.xpand3.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>
diff --git a/plugins/org.eclipse.xpand3.ui/.settings/org.eclipse.jdt.core.prefs b/plugins/org.eclipse.xpand3.ui/.settings/org.eclipse.jdt.core.prefs
new file mode 100644
index 00000000..7b2760d2
--- /dev/null
+++ b/plugins/org.eclipse.xpand3.ui/.settings/org.eclipse.jdt.core.prefs
@@ -0,0 +1,7 @@
+#Tue Feb 26 09:54:46 CET 2008
+eclipse.preferences.version=1
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
+org.eclipse.jdt.core.compiler.compliance=1.5
+org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
+org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
+org.eclipse.jdt.core.compiler.source=1.5
diff --git a/plugins/org.eclipse.xpand3.ui/META-INF/MANIFEST.MF b/plugins/org.eclipse.xpand3.ui/META-INF/MANIFEST.MF
new file mode 100644
index 00000000..8ebce455
--- /dev/null
+++ b/plugins/org.eclipse.xpand3.ui/META-INF/MANIFEST.MF
@@ -0,0 +1,11 @@
+Manifest-Version: 1.0
+Bundle-ManifestVersion: 2
+Bundle-Name: Xpand3 Ui Plug-in
+Bundle-SymbolicName: org.eclipse.xpand3.ui
+Bundle-Version: 0.9
+Bundle-Activator: org.eclipse.xpand3.ui.Activator
+Bundle-Vendor: www.eclipse.org
+Require-Bundle: org.eclipse.ui,
+ org.eclipse.core.runtime
+Bundle-RequiredExecutionEnvironment: J2SE-1.5
+Bundle-ActivationPolicy: lazy
diff --git a/plugins/org.eclipse.xpand3.ui/build.properties b/plugins/org.eclipse.xpand3.ui/build.properties
new file mode 100644
index 00000000..34d2e4d2
--- /dev/null
+++ b/plugins/org.eclipse.xpand3.ui/build.properties
@@ -0,0 +1,4 @@
+source.. = src/
+output.. = bin/
+bin.includes = META-INF/,\
+ .
diff --git a/plugins/org.eclipse.xpand3.ui/src/org/eclipse/xpand3/ui/Activator.java b/plugins/org.eclipse.xpand3.ui/src/org/eclipse/xpand3/ui/Activator.java
new file mode 100644
index 00000000..d38e7487
--- /dev/null
+++ b/plugins/org.eclipse.xpand3.ui/src/org/eclipse/xpand3/ui/Activator.java
@@ -0,0 +1,50 @@
+package org.eclipse.xpand3.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.eclipse.xpand3.ui";
+
+ // 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/plugins/org.eclipse.xpand3/.classpath b/plugins/org.eclipse.xpand3/.classpath
new file mode 100644
index 00000000..304e8618
--- /dev/null
+++ b/plugins/org.eclipse.xpand3/.classpath
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+ <classpathentry kind="src" path="src"/>
+ <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5"/>
+ <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
+ <classpathentry kind="output" path="bin"/>
+</classpath>
diff --git a/plugins/org.eclipse.xpand3/.project b/plugins/org.eclipse.xpand3/.project
new file mode 100644
index 00000000..93fe7e99
--- /dev/null
+++ b/plugins/org.eclipse.xpand3/.project
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>org.eclipse.xpand3</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>
diff --git a/plugins/org.eclipse.xpand3/.settings/org.eclipse.jdt.core.prefs b/plugins/org.eclipse.xpand3/.settings/org.eclipse.jdt.core.prefs
new file mode 100644
index 00000000..6ffe89cc
--- /dev/null
+++ b/plugins/org.eclipse.xpand3/.settings/org.eclipse.jdt.core.prefs
@@ -0,0 +1,7 @@
+#Tue Feb 26 09:54:08 CET 2008
+eclipse.preferences.version=1
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
+org.eclipse.jdt.core.compiler.compliance=1.5
+org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
+org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
+org.eclipse.jdt.core.compiler.source=1.5
diff --git a/plugins/org.eclipse.xpand3/META-INF/MANIFEST.MF b/plugins/org.eclipse.xpand3/META-INF/MANIFEST.MF
new file mode 100644
index 00000000..2784fd7b
--- /dev/null
+++ b/plugins/org.eclipse.xpand3/META-INF/MANIFEST.MF
@@ -0,0 +1,7 @@
+Manifest-Version: 1.0
+Bundle-ManifestVersion: 2
+Bundle-Name: Xpand3 Plug-in
+Bundle-SymbolicName: org.eclipse.xpand3
+Bundle-Version: 0.9
+Bundle-Vendor: www.eclipse.org
+Bundle-RequiredExecutionEnvironment: J2SE-1.5
diff --git a/plugins/org.eclipse.xpand3/build.properties b/plugins/org.eclipse.xpand3/build.properties
new file mode 100644
index 00000000..34d2e4d2
--- /dev/null
+++ b/plugins/org.eclipse.xpand3/build.properties
@@ -0,0 +1,4 @@
+source.. = src/
+output.. = bin/
+bin.includes = META-INF/,\
+ .

Back to the top