Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/developer/org.eclipse.papyrus.def/xtend/utils/EditPartsUtils_qvto.xtend')
-rw-r--r--plugins/developer/org.eclipse.papyrus.def/xtend/utils/EditPartsUtils_qvto.xtend90
1 files changed, 45 insertions, 45 deletions
diff --git a/plugins/developer/org.eclipse.papyrus.def/xtend/utils/EditPartsUtils_qvto.xtend b/plugins/developer/org.eclipse.papyrus.def/xtend/utils/EditPartsUtils_qvto.xtend
index 41c5a2bc2fe..7eaa6525c7f 100644
--- a/plugins/developer/org.eclipse.papyrus.def/xtend/utils/EditPartsUtils_qvto.xtend
+++ b/plugins/developer/org.eclipse.papyrus.def/xtend/utils/EditPartsUtils_qvto.xtend
@@ -1,45 +1,45 @@
-/*
- * Copyright (c) 2010 CEA LIST
- *
- * 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:
- * Yann Tanguy (CEA LIST) - initial API and implementation
- *
- */
-package utils
-
-import com.google.inject.Singleton
-import java.util.List
-import org.eclipse.gmf.codegen.gmfgen.GenExternalNodeLabel
-import org.eclipse.gmf.codegen.gmfgen.GenNode
-import org.eclipse.papyrus.papyrusgmfgenextension.SpecificLocatorExternalLabel
-
-@Singleton class EditPartsUtils_qvto {
-
- def boolean hasSpecificLocator(GenExternalNodeLabel it) {
-
- return it.eResource.allContents.filter(typeof(SpecificLocatorExternalLabel)).filter[v|v.genExternalNodeLabel.contains(it)].size != 0
- }
-
- def String getSpecificLocator(GenExternalNodeLabel it) {
-
- if(hasSpecificLocator(it)) {
- return it.eResource.allContents.filter(typeof(SpecificLocatorExternalLabel)).filter[v|v.genExternalNodeLabel.contains(it)].head.classpath
- }
-
- return null;
- }
-
- def List<GenExternalNodeLabel> getExternalLabelsWithoutSpecificLocator(GenNode it) {
- return it.labels.filter(typeof(GenExternalNodeLabel)).filter[l|!hasSpecificLocator(l)].toList;
- }
-
- def List<GenExternalNodeLabel> getExternalLabelsWithSpecificLocator(GenNode it) {
- return it.labels.filter(typeof(GenExternalNodeLabel)).filter[l|hasSpecificLocator(l)].toList;
- }
-
-}
+/*
+ * Copyright (c) 2010 CEA LIST
+ *
+ * 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:
+ * Yann Tanguy (CEA LIST) - initial API and implementation
+ *
+ */
+package utils
+
+import com.google.inject.Singleton
+import java.util.List
+import org.eclipse.gmf.codegen.gmfgen.GenExternalNodeLabel
+import org.eclipse.gmf.codegen.gmfgen.GenNode
+import org.eclipse.papyrus.papyrusgmfgenextension.SpecificLocatorExternalLabel
+
+@Singleton class EditPartsUtils_qvto {
+
+ def boolean hasSpecificLocator(GenExternalNodeLabel it) {
+
+ return it.eResource.allContents.filter(typeof(SpecificLocatorExternalLabel)).filter[v|v.genExternalNodeLabel.contains(it)].size != 0
+ }
+
+ def String getSpecificLocator(GenExternalNodeLabel it) {
+
+ if(hasSpecificLocator(it)) {
+ return it.eResource.allContents.filter(typeof(SpecificLocatorExternalLabel)).filter[v|v.genExternalNodeLabel.contains(it)].head.classpath
+ }
+
+ return null;
+ }
+
+ def List<GenExternalNodeLabel> getExternalLabelsWithoutSpecificLocator(GenNode it) {
+ return it.labels.filter(typeof(GenExternalNodeLabel)).filter[l|!hasSpecificLocator(l)].toList;
+ }
+
+ def List<GenExternalNodeLabel> getExternalLabelsWithSpecificLocator(GenNode it) {
+ return it.labels.filter(typeof(GenExternalNodeLabel)).filter[l|hasSpecificLocator(l)].toList;
+ }
+
+}

Back to the top