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/GenModelUtils.qvto')
-rw-r--r--plugins/toolsmiths/gmf-tooling/org.eclipse.papyrus.gmf.codegen/templates.nativestubs/gmf/GenModelUtils.qvto51
1 files changed, 0 insertions, 51 deletions
diff --git a/plugins/toolsmiths/gmf-tooling/org.eclipse.papyrus.gmf.codegen/templates.nativestubs/gmf/GenModelUtils.qvto b/plugins/toolsmiths/gmf-tooling/org.eclipse.papyrus.gmf.codegen/templates.nativestubs/gmf/GenModelUtils.qvto
deleted file mode 100644
index 7b73852aa3f..00000000000
--- a/plugins/toolsmiths/gmf-tooling/org.eclipse.papyrus.gmf.codegen/templates.nativestubs/gmf/GenModelUtils.qvto
+++ /dev/null
@@ -1,51 +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:
- * Alexander Shatalin (Borland) - initial API and implementation
- * Aurelien Didier (ARTAL) - aurelien.didier51@gmail.com - Bug 569174
- *****************************************************************************/
-modeltype genModel uses "http://www.eclipse.org/emf/2002/GenModel";
-modeltype ecore uses "http://www.eclipse.org/emf/2002/Ecore";
-
-library GenModelUtils;
-
-/*
- * This file contains a set of qvto queries duplicating corresponding queries
- * from same native library and can be important to compile corresponding
- * templates in a workspace.
- *
- * This file should NOT be deployed to final .jar - original native library
- * implementation (registered via plugin.xml) should be used on execution time.
- */
-
-helper getDocumentRoot(genPackage : genmodel::GenPackage) : genmodel::GenClass {
- return null;
-}
-
-helper findGenClassifier(genModel : genmodel::GenModel, eClassifier : ecore::EClassifier) : genmodel::GenClassifier {
- return null;
-}
-
-helper isListType(genFeature : genmodel::GenFeature) : Boolean {
- return null;
-}
-
-helper isDerived(genFeature : genmodel::GenFeature) : Boolean {
- return null;
-}
-
-helper getTypeGenClassX(genFeature : genmodel::GenFeature) : genmodel::GenClass {
- return null;
-}
-
-helper getGetAccessor(genFeature : genmodel::GenFeature) : String {
- return null;
-} \ No newline at end of file

Back to the top