Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/toolsmiths/gmf-tooling/org.eclipse.papyrus.gmf.codegen.xtend/xtend/impl/diagram/editparts/viewmaps/BareFigure_qvto.xtend')
-rw-r--r--plugins/toolsmiths/gmf-tooling/org.eclipse.papyrus.gmf.codegen.xtend/xtend/impl/diagram/editparts/viewmaps/BareFigure_qvto.xtend44
1 files changed, 0 insertions, 44 deletions
diff --git a/plugins/toolsmiths/gmf-tooling/org.eclipse.papyrus.gmf.codegen.xtend/xtend/impl/diagram/editparts/viewmaps/BareFigure_qvto.xtend b/plugins/toolsmiths/gmf-tooling/org.eclipse.papyrus.gmf.codegen.xtend/xtend/impl/diagram/editparts/viewmaps/BareFigure_qvto.xtend
deleted file mode 100644
index 8fc4194e550..00000000000
--- a/plugins/toolsmiths/gmf-tooling/org.eclipse.papyrus.gmf.codegen.xtend/xtend/impl/diagram/editparts/viewmaps/BareFigure_qvto.xtend
+++ /dev/null
@@ -1,44 +0,0 @@
-/******************************************************************************
- * Copyright (c) 2011 Montages AG
- *
- * 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
- * Michael Golubev (Montages) - #386838 - migrate to Xtend2
- * Aurelien Didier (ARTAL) - aurelien.didier51@gmail.com - Bug 569174
- *****************************************************************************/
-package impl.diagram.editparts.viewmaps
-
-import com.google.inject.Inject
-import org.eclipse.emf.ecore.EStructuralFeature
-import org.eclipse.papyrus.gmf.gmfgraph.FigureDescriptor
-import org.eclipse.papyrus.gmf.gmfgraph.RealFigure
-import xpt.Common_qvto
-
-@com.google.inject.Singleton class BareFigure_qvto {
- @Inject extension Common_qvto
-
- def boolean isBareFigureDescriptor(FigureDescriptor descriptor) {
- return descriptor.actualFigure.oclIsKindOf(typeof(RealFigure)) &&
- isBareFigure(descriptor.actualFigure as RealFigure)
- }
-
- private def isDerivedOrAlwaysSet(EStructuralFeature f) {
- f.derived || (f.EContainingClass.name == 'RealFigure' && f.name == 'name') ||
- (f.EContainingClass.name == 'RealFigure' && f.name == 'children') ||
- (f.EContainingClass.name == 'CustomClass' && f.name == 'qualifiedClassName') ||
- (f.EContainingClass.name == 'CustomFigure' && f.name == 'customChildren')
- }
-
- def boolean isBareFigure(RealFigure figure) {
- var featuresToCheck = figure.eClass.EAllStructuralFeatures.filter[f|!isDerivedOrAlwaysSet(f)];
- figure.children.empty && featuresToCheck.forall[f|!figure.eIsSet(f)];
- }
-
-}

Back to the top