Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.sirius.editor.sequence/src-gen/org/eclipse/sirius/diagram/sequence/editor/properties/filters/template/tabstractmapping/TAbstractMappingNameFilter.java')
-rw-r--r--plugins/org.eclipse.sirius.editor.sequence/src-gen/org/eclipse/sirius/diagram/sequence/editor/properties/filters/template/tabstractmapping/TAbstractMappingNameFilter.java45
1 files changed, 45 insertions, 0 deletions
diff --git a/plugins/org.eclipse.sirius.editor.sequence/src-gen/org/eclipse/sirius/diagram/sequence/editor/properties/filters/template/tabstractmapping/TAbstractMappingNameFilter.java b/plugins/org.eclipse.sirius.editor.sequence/src-gen/org/eclipse/sirius/diagram/sequence/editor/properties/filters/template/tabstractmapping/TAbstractMappingNameFilter.java
new file mode 100644
index 0000000000..fdcc4cbf23
--- /dev/null
+++ b/plugins/org.eclipse.sirius.editor.sequence/src-gen/org/eclipse/sirius/diagram/sequence/editor/properties/filters/template/tabstractmapping/TAbstractMappingNameFilter.java
@@ -0,0 +1,45 @@
+/*******************************************************************************
+ * Copyright (c) 2007-2013 THALES GLOBAL SERVICES.
+ * 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:
+ * Obeo - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.sirius.diagram.sequence.editor.properties.filters.template.tabstractmapping;
+
+// Start of user code specific imports
+
+import org.eclipse.emf.ecore.EStructuralFeature;
+
+import org.eclipse.sirius.diagram.sequence.template.TemplatePackage;
+import org.eclipse.sirius.editor.properties.filters.common.SiriusPropertyFilter;
+
+// End of user code specific imports
+
+/**
+ * A filter for the name property section.
+ */
+public class TAbstractMappingNameFilter extends SiriusPropertyFilter {
+
+ /**
+ * {@inheritDoc}
+ */
+ protected EStructuralFeature getFeature() {
+ return TemplatePackage.eINSTANCE.getTAbstractMapping_Name();
+ }
+
+ /**
+ * {@inheritDoc}
+ */
+ protected boolean isRightInputType(Object arg0) {
+ return arg0 instanceof org.eclipse.sirius.diagram.sequence.template.TAbstractMapping;
+ }
+
+ // Start of user code user methods
+
+ // End of user code user methods
+
+}

Back to the top