Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.sirius/src-gen/org/eclipse/sirius/description/tool/ContainerModelOperation.java')
-rw-r--r--plugins/org.eclipse.sirius/src-gen/org/eclipse/sirius/description/tool/ContainerModelOperation.java60
1 files changed, 60 insertions, 0 deletions
diff --git a/plugins/org.eclipse.sirius/src-gen/org/eclipse/sirius/description/tool/ContainerModelOperation.java b/plugins/org.eclipse.sirius/src-gen/org/eclipse/sirius/description/tool/ContainerModelOperation.java
new file mode 100644
index 0000000000..021a5c4b78
--- /dev/null
+++ b/plugins/org.eclipse.sirius/src-gen/org/eclipse/sirius/description/tool/ContainerModelOperation.java
@@ -0,0 +1,60 @@
+/*******************************************************************************
+ * 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.description.tool;
+
+import org.eclipse.emf.common.util.EList;
+
+/**
+ * <!-- begin-user-doc --> A representation of the model object '
+ * <em><b>Container Model Operation</b></em>'. <!-- end-user-doc -->
+ *
+ * <p>
+ * The following features are supported:
+ * <ul>
+ * <li>
+ * {@link org.eclipse.sirius.description.tool.ContainerModelOperation#getSubModelOperations
+ * <em>Sub Model Operations</em>}</li>
+ * </ul>
+ * </p>
+ *
+ * @see org.eclipse.sirius.description.tool.ToolPackage#getContainerModelOperation()
+ * @model abstract="true"
+ * @generated
+ */
+public interface ContainerModelOperation extends ModelOperation {
+ /**
+ * <!-- begin-user-doc --> <!-- end-user-doc -->
+ *
+ * @generated
+ */
+ String copyright = "Copyright (c) 2007-2013 THALES GLOBAL SERVICES\n All rights reserved.\n\n Contributors:\n Obeo - Initial API and implementation";
+
+ /**
+ * Returns the value of the '<em><b>Sub Model Operations</b></em>'
+ * containment reference list. The list contents are of type
+ * {@link org.eclipse.sirius.description.tool.ModelOperation}. <!--
+ * begin-user-doc -->
+ * <p>
+ * If the meaning of the '<em>Sub Model Operations</em>' containment
+ * reference list isn't clear, there really should be more of a description
+ * here...
+ * </p>
+ * <!-- end-user-doc -->
+ *
+ * @return the value of the '<em>Sub Model Operations</em>' containment
+ * reference list.
+ * @see org.eclipse.sirius.description.tool.ToolPackage#getContainerModelOperation_SubModelOperations()
+ * @model containment="true" resolveProxies="true"
+ * @generated
+ */
+ EList<ModelOperation> getSubModelOperations();
+
+} // ContainerModelOperation

Back to the top