Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/toolsmiths/gmf-tooling/org.eclipse.papyrus.gmf.codegen.xtend/xtend/xpt/Access.xtend')
-rw-r--r--plugins/toolsmiths/gmf-tooling/org.eclipse.papyrus.gmf.codegen.xtend/xtend/xpt/Access.xtend24
1 files changed, 12 insertions, 12 deletions
diff --git a/plugins/toolsmiths/gmf-tooling/org.eclipse.papyrus.gmf.codegen.xtend/xtend/xpt/Access.xtend b/plugins/toolsmiths/gmf-tooling/org.eclipse.papyrus.gmf.codegen.xtend/xtend/xpt/Access.xtend
index fa1837f8f65..c44767475be 100644
--- a/plugins/toolsmiths/gmf-tooling/org.eclipse.papyrus.gmf.codegen.xtend/xtend/xpt/Access.xtend
+++ b/plugins/toolsmiths/gmf-tooling/org.eclipse.papyrus.gmf.codegen.xtend/xtend/xpt/Access.xtend
@@ -1,16 +1,16 @@
/*******************************************************************************
* Copyright (c) 2013-2020 Borland Software Corporation, CEA LIST, Artal and others
- *
+ *
* 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/
- *
+ * https://www.eclipse.org/legal/epl-2.0/
+ *
* SPDX-License-Identifier: EPL-2.0
*
- * Contributors:
- * Svyatoslav Kovalsky (Montages) - initial API and implementation
- * Aurelien Didier (ARTAL) - aurelien.didier51@gmail.com - Bug 569174
+ * Contributors:
+ * Svyatoslav Kovalsky (Montages) - initial API and implementation
+ * Aurelien Didier (ARTAL) - aurelien.didier51@gmail.com - Bug 569174
*****************************************************************************/
package xpt
@@ -18,16 +18,16 @@ import org.eclipse.papyrus.gmf.codegen.gmfgen.GenEditorGenerator
import com.google.inject.Inject
@com.google.inject.Singleton class Access {
-
+
@Inject Externalizer ext;
-
+
def className(GenEditorGenerator it) '''«ext.accessClassName(it)»'''
-
+
def packageName(GenEditorGenerator it) '''«ext.accessPackageName(it)»'''
-
+
def qualifiedClassName(GenEditorGenerator it) '''«packageName(it)».«className(it)»'''
-
+
def fullPath(GenEditorGenerator it) '''«qualifiedClassName(it)»'''
-
+
def Access(GenEditorGenerator it) '''«ext.Access(it)»'''
} \ No newline at end of file

Back to the top