Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorptessier2018-09-25 11:47:39 +0000
committerQuentin Le Menez2018-11-22 10:33:11 +0000
commit08b6358e2615217cf42d7b929304ee36a4031009 (patch)
tree4aa09289cf6b4cc0e366a635ff12722cc794a0f9 /plugins/facet/org.eclipse.papyrus.emf.facet.query.java.metamodel/src-gen/org/eclipse/papyrus/emf/facet
parent3408513589ec1aae6358cc010e5778e6a83ce5b2 (diff)
downloadorg.eclipse.papyrus-08b6358e2615217cf42d7b929304ee36a4031009.tar.gz
org.eclipse.papyrus-08b6358e2615217cf42d7b929304ee36a4031009.tar.xz
org.eclipse.papyrus-08b6358e2615217cf42d7b929304ee36a4031009.zip
Bug 536144 - [EMF Facet] validation of a custom file must be improved
Change-Id: I7528c23fdf7d4a2ee02dd0fef92e4d0a93322981 Signed-off-by: Patrick Tessier <patrick.tessier@cea.fr>
Diffstat (limited to 'plugins/facet/org.eclipse.papyrus.emf.facet.query.java.metamodel/src-gen/org/eclipse/papyrus/emf/facet')
-rw-r--r--plugins/facet/org.eclipse.papyrus.emf.facet.query.java.metamodel/src-gen/org/eclipse/papyrus/emf/facet/query/java/metamodel/internal/Activator.java35
1 files changed, 0 insertions, 35 deletions
diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.query.java.metamodel/src-gen/org/eclipse/papyrus/emf/facet/query/java/metamodel/internal/Activator.java b/plugins/facet/org.eclipse.papyrus.emf.facet.query.java.metamodel/src-gen/org/eclipse/papyrus/emf/facet/query/java/metamodel/internal/Activator.java
deleted file mode 100644
index ea2a17a3aa8..00000000000
--- a/plugins/facet/org.eclipse.papyrus.emf.facet.query.java.metamodel/src-gen/org/eclipse/papyrus/emf/facet/query/java/metamodel/internal/Activator.java
+++ /dev/null
@@ -1,35 +0,0 @@
-package org.eclipse.papyrus.emf.facet.query.java.metamodel.internal;
-
-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.papyrus.emf.facet.query.java.metamodel"; //$NON-NLS-1$
-
- // The shared instance
- private static Activator plugin;
-
- @Override
- public void start(final BundleContext context) throws Exception {
- super.start(context);
- Activator.plugin = this;
- }
-
- @Override
- public void stop(final BundleContext context) throws Exception {
- Activator.plugin = null;
- super.stop(context);
- }
-
- /**
- * Returns the shared instance
- *
- * @return the shared instance
- */
- public static Activator getDefault() {
- return Activator.plugin;
- }
-}

Back to the top