Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/toolsmiths/gmf-tooling/org.eclipse.papyrus.gmf.codegen/templates.nativestubs/gmf/GenModelAccess.qvto')
-rw-r--r--plugins/toolsmiths/gmf-tooling/org.eclipse.papyrus.gmf.codegen/templates.nativestubs/gmf/GenModelAccess.qvto30
1 files changed, 0 insertions, 30 deletions
diff --git a/plugins/toolsmiths/gmf-tooling/org.eclipse.papyrus.gmf.codegen/templates.nativestubs/gmf/GenModelAccess.qvto b/plugins/toolsmiths/gmf-tooling/org.eclipse.papyrus.gmf.codegen/templates.nativestubs/gmf/GenModelAccess.qvto
deleted file mode 100644
index cd5fbe9a842..00000000000
--- a/plugins/toolsmiths/gmf-tooling/org.eclipse.papyrus.gmf.codegen/templates.nativestubs/gmf/GenModelAccess.qvto
+++ /dev/null
@@ -1,30 +0,0 @@
-/******************************************************************************
- * Copyright (c) 2009, 2020 Borland Software Corporation, CEA LIST, Artal
- *
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License 2.0
- * which accompanies this distribution, and is available at
- * https://www.eclipse.org/legal/epl-2.0/
- *
- * SPDX-License-Identifier: EPL-2.0
- *
- * Contributors:
- * Artem Tikhomirov (Borland) - initial API and implementation
- * Aurelien Didier (ARTAL) - aurelien.didier51@gmail.com - Bug 569174
- *****************************************************************************/
-modeltype ecore uses "http://www.eclipse.org/emf/2002/Ecore";
-modeltype genmodel uses "http://www.eclipse.org/emf/2002/GenModel";
-
-library GenModelAccess;
-
--- similar to loadGenModel('http://www.eclipse.org/emf/2002/Ecore')
-helper loadEcoreGenModel() : GenModel { return null; }
-helper loadEcoreGenModel(EObject ctx) : GenModel { return null; }
-
--- similar to loadGenModel('http://www.eclipse.org/gmf/runtime/1.0.2/notation')
-helper loadNotationGenModel() : GenModel { return null; }
-helper loadNotationGenModel(EObject ctx) : GenModel { return null; }
-
--- nsURI - identifies ECore model you need GenModel for.
-helper loadGenModel(String nsURI) : GenModel { return null; }
-helper loadGenModel(String nsURI, EObject ctx) : GenModel { return null; }

Back to the top