Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/customization/org.eclipse.papyrus.customization/src-gen/org/eclipse/papyrus/customization/model/customization/FileBasedCustomizableElement.java')
-rw-r--r--plugins/customization/org.eclipse.papyrus.customization/src-gen/org/eclipse/papyrus/customization/model/customization/FileBasedCustomizableElement.java53
1 files changed, 53 insertions, 0 deletions
diff --git a/plugins/customization/org.eclipse.papyrus.customization/src-gen/org/eclipse/papyrus/customization/model/customization/FileBasedCustomizableElement.java b/plugins/customization/org.eclipse.papyrus.customization/src-gen/org/eclipse/papyrus/customization/model/customization/FileBasedCustomizableElement.java
new file mode 100644
index 00000000000..182693ff877
--- /dev/null
+++ b/plugins/customization/org.eclipse.papyrus.customization/src-gen/org/eclipse/papyrus/customization/model/customization/FileBasedCustomizableElement.java
@@ -0,0 +1,53 @@
+/**
+ * <copyright>
+ * </copyright>
+ *
+ * $Id$
+ */
+package org.eclipse.papyrus.customization.model.customization;
+
+
+/**
+ * <!-- begin-user-doc -->
+ * A representation of the model object '<em><b>File Based Customizable Element</b></em>'.
+ * <!-- end-user-doc -->
+ *
+ * <p>
+ * The following features are supported:
+ * <ul>
+ * <li>{@link org.eclipse.papyrus.customization.model.customization.FileBasedCustomizableElement#getFile <em>File</em>}</li>
+ * </ul>
+ * </p>
+ *
+ * @see org.eclipse.papyrus.customization.model.customization.CustomizationPackage#getFileBasedCustomizableElement()
+ * @model abstract="true"
+ * @generated
+ */
+public interface FileBasedCustomizableElement extends CustomizableElement {
+ /**
+ * Returns the value of the '<em><b>File</b></em>' attribute.
+ * <!-- begin-user-doc -->
+ * <p>
+ * If the meaning of the '<em>File</em>' attribute isn't clear,
+ * there really should be more of a description here...
+ * </p>
+ * <!-- end-user-doc -->
+ * @return the value of the '<em>File</em>' attribute.
+ * @see #setFile(String)
+ * @see org.eclipse.papyrus.customization.model.customization.CustomizationPackage#getFileBasedCustomizableElement_File()
+ * @model required="true"
+ * @generated
+ */
+ String getFile();
+
+ /**
+ * Sets the value of the '{@link org.eclipse.papyrus.customization.model.customization.FileBasedCustomizableElement#getFile <em>File</em>}' attribute.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @param value the new value of the '<em>File</em>' attribute.
+ * @see #getFile()
+ * @generated
+ */
+ void setFile(String value);
+
+} // FileBasedCustomizableElement

Back to the top