Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.sirius.editor/src-gen/org/eclipse/sirius/editor/properties/filters/tool/panebasedselectionwizarddescription/PaneBasedSelectionWizardDescriptionChildrenExpressionFilter.java')
-rw-r--r--plugins/org.eclipse.sirius.editor/src-gen/org/eclipse/sirius/editor/properties/filters/tool/panebasedselectionwizarddescription/PaneBasedSelectionWizardDescriptionChildrenExpressionFilter.java45
1 files changed, 45 insertions, 0 deletions
diff --git a/plugins/org.eclipse.sirius.editor/src-gen/org/eclipse/sirius/editor/properties/filters/tool/panebasedselectionwizarddescription/PaneBasedSelectionWizardDescriptionChildrenExpressionFilter.java b/plugins/org.eclipse.sirius.editor/src-gen/org/eclipse/sirius/editor/properties/filters/tool/panebasedselectionwizarddescription/PaneBasedSelectionWizardDescriptionChildrenExpressionFilter.java
new file mode 100644
index 0000000000..59914c9e21
--- /dev/null
+++ b/plugins/org.eclipse.sirius.editor/src-gen/org/eclipse/sirius/editor/properties/filters/tool/panebasedselectionwizarddescription/PaneBasedSelectionWizardDescriptionChildrenExpressionFilter.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.editor.properties.filters.tool.panebasedselectionwizarddescription;
+
+// Start of user code specific imports
+
+import org.eclipse.emf.ecore.EStructuralFeature;
+
+import org.eclipse.sirius.description.tool.ToolPackage;
+import org.eclipse.sirius.editor.properties.filters.common.SiriusPropertyFilter;
+
+// End of user code specific imports
+
+/**
+ * A filter for the childrenExpression property section.
+ */
+public class PaneBasedSelectionWizardDescriptionChildrenExpressionFilter extends SiriusPropertyFilter {
+
+ /**
+ * {@inheritDoc}
+ */
+ protected EStructuralFeature getFeature() {
+ return ToolPackage.eINSTANCE.getPaneBasedSelectionWizardDescription_ChildrenExpression();
+ }
+
+ /**
+ * {@inheritDoc}
+ */
+ protected boolean isRightInputType(Object arg0) {
+ return arg0 instanceof org.eclipse.sirius.description.tool.PaneBasedSelectionWizardDescription;
+ }
+
+ // Start of user code user methods
+
+ // End of user code user methods
+
+}

Back to the top