Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.sirius/src-gen/org/eclipse/sirius/description/tool/AcceleoVariable.java')
-rw-r--r--plugins/org.eclipse.sirius/src-gen/org/eclipse/sirius/description/tool/AcceleoVariable.java71
1 files changed, 71 insertions, 0 deletions
diff --git a/plugins/org.eclipse.sirius/src-gen/org/eclipse/sirius/description/tool/AcceleoVariable.java b/plugins/org.eclipse.sirius/src-gen/org/eclipse/sirius/description/tool/AcceleoVariable.java
new file mode 100644
index 0000000000..4972d642c0
--- /dev/null
+++ b/plugins/org.eclipse.sirius/src-gen/org/eclipse/sirius/description/tool/AcceleoVariable.java
@@ -0,0 +1,71 @@
+/*******************************************************************************
+ * 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;
+
+/**
+ * <!-- begin-user-doc --> A representation of the model object '
+ * <em><b>Acceleo Variable</b></em>'. <!-- end-user-doc -->
+ *
+ * <p>
+ * The following features are supported:
+ * <ul>
+ * <li>
+ * {@link org.eclipse.sirius.description.tool.AcceleoVariable#getComputationExpression
+ * <em>Computation Expression</em>}</li>
+ * </ul>
+ * </p>
+ *
+ * @see org.eclipse.sirius.description.tool.ToolPackage#getAcceleoVariable()
+ * @model
+ * @generated
+ */
+public interface AcceleoVariable extends VariableContainer, SubVariable {
+ /**
+ * <!-- 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>Computation Expression</b></em>'
+ * attribute. <!-- begin-user-doc -->
+ * <p>
+ * If the meaning of the '<em>Computation Expression</em>' attribute isn't
+ * clear, there really should be more of a description here...
+ * </p>
+ * <!-- end-user-doc -->
+ *
+ * @return the value of the '<em>Computation Expression</em>' attribute.
+ * @see #setComputationExpression(String)
+ * @see org.eclipse.sirius.description.tool.ToolPackage#getAcceleoVariable_ComputationExpression()
+ * @model dataType="org.eclipse.sirius.description.InterpretedExpression"
+ * annotation=
+ * "http://www.eclipse.org/sirius/interpreted/expression/returnType returnType='a Collection<Object> or an Object.'"
+ * @generated
+ */
+ String getComputationExpression();
+
+ /**
+ * Sets the value of the '
+ * {@link org.eclipse.sirius.description.tool.AcceleoVariable#getComputationExpression
+ * <em>Computation Expression</em>}' attribute. <!-- begin-user-doc --> <!--
+ * end-user-doc -->
+ *
+ * @param value
+ * the new value of the '<em>Computation Expression</em>'
+ * attribute.
+ * @see #getComputationExpression()
+ * @generated
+ */
+ void setComputationExpression(String value);
+
+} // AcceleoVariable

Back to the top