← Back to team overview

mlhim-specs-dev team mailing list archive

[Branch ~mlhim-specs-dev/mlhim-specs/main] Rev 178: Added an Acceleo model.

 

------------------------------------------------------------
revno: 178
committer: Timothy W. Cook <timothywayne.cook@xxxxxxxxx>
branch nick: mlhim-specs
timestamp: Fri 2011-06-24 10:32:07 -0500
message:
  Added an Acceleo model.
added:
  acceleo/
  acceleo/META-INF/
  acceleo/META-INF/MANIFEST.MF
  acceleo/bin/
  acceleo/bin/org/
  acceleo/bin/org/eclipse/
  acceleo/bin/org/eclipse/acceleo/
  acceleo/bin/org/eclipse/acceleo/mlhim2/
  acceleo/bin/org/eclipse/acceleo/mlhim2/Activator.class
  acceleo/build.properties
  acceleo/src/
  acceleo/src/org/
  acceleo/src/org/eclipse/
  acceleo/src/org/eclipse/acceleo/
  acceleo/src/org/eclipse/acceleo/mlhim2/
  acceleo/src/org/eclipse/acceleo/mlhim2/Activator.java


--
lp:mlhim-specs
https://code.launchpad.net/~mlhim-specs-dev/mlhim-specs/main

Your team MLHIM Specifications Developers is subscribed to branch lp:mlhim-specs.
To unsubscribe from this branch go to https://code.launchpad.net/~mlhim-specs-dev/mlhim-specs/main/+edit-subscription
=== added directory 'acceleo'
=== added directory 'acceleo/META-INF'
=== added file 'acceleo/META-INF/MANIFEST.MF'
--- acceleo/META-INF/MANIFEST.MF	1970-01-01 00:00:00 +0000
+++ acceleo/META-INF/MANIFEST.MF	2011-06-24 15:32:07 +0000
@@ -0,0 +1,21 @@
+Manifest-Version: 1.0
+Bundle-ManifestVersion: 2
+Bundle-Name: Acceleo Mlhim2 Module Runtime Plug-in
+Bundle-SymbolicName: org.eclipse.acceleo.mlhim2
+Bundle-Version: 1.0.0.qualifier
+Bundle-Activator: org.eclipse.acceleo.mlhim2.Activator
+Bundle-Vendor: Eclipse Modeling Project
+Require-Bundle: org.eclipse.core.runtime, 
+ org.eclipse.emf.ecore,
+ org.eclipse.emf.ecore.xmi,
+ org.eclipse.ocl,
+ org.eclipse.ocl.ecore,
+ org.eclipse.acceleo.common;bundle-version="3.1.0",
+ org.eclipse.acceleo.parser;bundle-version="3.1.0",
+ org.eclipse.acceleo.model;bundle-version="3.1.0",
+ org.eclipse.acceleo.profiler;bundle-version="3.1.0",
+ org.eclipse.acceleo.engine;bundle-version="3.1.0"
+Bundle-RequiredExecutionEnvironment: J2SE-1.5
+Bundle-ActivationPolicy: lazy
+Eclipse-LazyStart: true
+

=== added directory 'acceleo/bin'
=== added directory 'acceleo/bin/org'
=== added directory 'acceleo/bin/org/eclipse'
=== added directory 'acceleo/bin/org/eclipse/acceleo'
=== added directory 'acceleo/bin/org/eclipse/acceleo/mlhim2'
=== added file 'acceleo/bin/org/eclipse/acceleo/mlhim2/Activator.class'
Binary files acceleo/bin/org/eclipse/acceleo/mlhim2/Activator.class	1970-01-01 00:00:00 +0000 and acceleo/bin/org/eclipse/acceleo/mlhim2/Activator.class	2011-06-24 15:32:07 +0000 differ
=== added file 'acceleo/build.properties'
--- acceleo/build.properties	1970-01-01 00:00:00 +0000
+++ acceleo/build.properties	2011-06-24 15:32:07 +0000
@@ -0,0 +1,5 @@
+source.. = src/
+output.. = bin/
+bin.includes = META-INF/,\
+               .
+customBuildCallbacks = build.acceleo

=== added directory 'acceleo/src'
=== added directory 'acceleo/src/org'
=== added directory 'acceleo/src/org/eclipse'
=== added directory 'acceleo/src/org/eclipse/acceleo'
=== added directory 'acceleo/src/org/eclipse/acceleo/mlhim2'
=== added file 'acceleo/src/org/eclipse/acceleo/mlhim2/Activator.java'
--- acceleo/src/org/eclipse/acceleo/mlhim2/Activator.java	1970-01-01 00:00:00 +0000
+++ acceleo/src/org/eclipse/acceleo/mlhim2/Activator.java	2011-06-24 15:32:07 +0000
@@ -0,0 +1,66 @@
+/*******************************************************************************
+ * Copyright (c) 2008, 2011 Obeo.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     Obeo - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.acceleo.mlhim2;
+
+import org.eclipse.core.runtime.Plugin;
+import org.osgi.framework.BundleContext;
+
+/**
+ * The activator class controls the plug-in life cycle.
+ */
+public class Activator extends Plugin {
+
+    /**
+     * The plug-in ID.
+     */
+    public static final String PLUGIN_ID = "org.eclipse.acceleo.mlhim2";
+
+    /**
+     * The shared instance.
+     */
+    private static Activator plugin;
+    
+    /**
+     * The constructor.
+     */
+    public Activator() {
+    }
+
+    /**
+     * {@inheritDoc}
+     *
+     * @see org.eclipse.core.runtime.Plugin#start(org.osgi.framework.BundleContext)
+     */
+    public void start(BundleContext context) throws Exception {
+        super.start(context);
+        plugin = this;
+    }
+
+    /**
+     * {@inheritDoc}
+     *
+     * @see org.eclipse.core.runtime.Plugin#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;
+    }
+
+}