Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'incoming/org.eclipse.papyrus.customization/src-gen/org/eclipse/papyrus/customization/model/customization/ModelTemplate.java')
-rw-r--r--incoming/org.eclipse.papyrus.customization/src-gen/org/eclipse/papyrus/customization/model/customization/ModelTemplate.java107
1 files changed, 107 insertions, 0 deletions
diff --git a/incoming/org.eclipse.papyrus.customization/src-gen/org/eclipse/papyrus/customization/model/customization/ModelTemplate.java b/incoming/org.eclipse.papyrus.customization/src-gen/org/eclipse/papyrus/customization/model/customization/ModelTemplate.java
new file mode 100644
index 00000000000..9ee49eb2550
--- /dev/null
+++ b/incoming/org.eclipse.papyrus.customization/src-gen/org/eclipse/papyrus/customization/model/customization/ModelTemplate.java
@@ -0,0 +1,107 @@
+/**
+ * <copyright>
+ * </copyright>
+ *
+ * $Id$
+ */
+package org.eclipse.papyrus.customization.model.customization;
+
+
+/**
+ * <!-- begin-user-doc -->
+ * A representation of the model object '<em><b>Model Template</b></em>'.
+ * <!-- end-user-doc -->
+ *
+ * <p>
+ * The following features are supported:
+ * <ul>
+ * <li>{@link org.eclipse.papyrus.customization.model.customization.ModelTemplate#getLanguage <em>Language</em>}</li>
+ * <li>{@link org.eclipse.papyrus.customization.model.customization.ModelTemplate#getName <em>Name</em>}</li>
+ * <li>{@link org.eclipse.papyrus.customization.model.customization.ModelTemplate#getId <em>Id</em>}</li>
+ * </ul>
+ * </p>
+ *
+ * @see org.eclipse.papyrus.customization.model.customization.CustomizationPackage#getModelTemplate()
+ * @model
+ * @generated
+ */
+public interface ModelTemplate extends FileBasedCustomizableElement {
+ /**
+ * Returns the value of the '<em><b>Language</b></em>' attribute.
+ * <!-- begin-user-doc -->
+ * <p>
+ * If the meaning of the '<em>Language</em>' attribute isn't clear,
+ * there really should be more of a description here...
+ * </p>
+ * <!-- end-user-doc -->
+ * @return the value of the '<em>Language</em>' attribute.
+ * @see #setLanguage(String)
+ * @see org.eclipse.papyrus.customization.model.customization.CustomizationPackage#getModelTemplate_Language()
+ * @model
+ * @generated
+ */
+ String getLanguage();
+
+ /**
+ * Sets the value of the '{@link org.eclipse.papyrus.customization.model.customization.ModelTemplate#getLanguage <em>Language</em>}' attribute.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @param value the new value of the '<em>Language</em>' attribute.
+ * @see #getLanguage()
+ * @generated
+ */
+ void setLanguage(String value);
+
+ /**
+ * Returns the value of the '<em><b>Name</b></em>' attribute.
+ * <!-- begin-user-doc -->
+ * <p>
+ * If the meaning of the '<em>Name</em>' attribute isn't clear,
+ * there really should be more of a description here...
+ * </p>
+ * <!-- end-user-doc -->
+ * @return the value of the '<em>Name</em>' attribute.
+ * @see #setName(String)
+ * @see org.eclipse.papyrus.customization.model.customization.CustomizationPackage#getModelTemplate_Name()
+ * @model
+ * @generated
+ */
+ String getName();
+
+ /**
+ * Sets the value of the '{@link org.eclipse.papyrus.customization.model.customization.ModelTemplate#getName <em>Name</em>}' attribute.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @param value the new value of the '<em>Name</em>' attribute.
+ * @see #getName()
+ * @generated
+ */
+ void setName(String value);
+
+ /**
+ * Returns the value of the '<em><b>Id</b></em>' attribute.
+ * <!-- begin-user-doc -->
+ * <p>
+ * If the meaning of the '<em>Id</em>' attribute isn't clear,
+ * there really should be more of a description here...
+ * </p>
+ * <!-- end-user-doc -->
+ * @return the value of the '<em>Id</em>' attribute.
+ * @see #setId(String)
+ * @see org.eclipse.papyrus.customization.model.customization.CustomizationPackage#getModelTemplate_Id()
+ * @model required="true"
+ * @generated
+ */
+ String getId();
+
+ /**
+ * Sets the value of the '{@link org.eclipse.papyrus.customization.model.customization.ModelTemplate#getId <em>Id</em>}' attribute.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @param value the new value of the '<em>Id</em>' attribute.
+ * @see #getId()
+ * @generated
+ */
+ void setId(String value);
+
+} // ModelTemplate

Back to the top