Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/qompass/codegen/java/org.eclipse.papyrus.java.profile/src/org/eclipse/papyrus/java/profile/java/JavaGen.java')
-rw-r--r--extraplugins/qompass/codegen/java/org.eclipse.papyrus.java.profile/src/org/eclipse/papyrus/java/profile/java/JavaGen.java84
1 files changed, 84 insertions, 0 deletions
diff --git a/extraplugins/qompass/codegen/java/org.eclipse.papyrus.java.profile/src/org/eclipse/papyrus/java/profile/java/JavaGen.java b/extraplugins/qompass/codegen/java/org.eclipse.papyrus.java.profile/src/org/eclipse/papyrus/java/profile/java/JavaGen.java
new file mode 100644
index 00000000000..a4342630684
--- /dev/null
+++ b/extraplugins/qompass/codegen/java/org.eclipse.papyrus.java.profile/src/org/eclipse/papyrus/java/profile/java/JavaGen.java
@@ -0,0 +1,84 @@
+/**
+ * <copyright>
+ * </copyright>
+ *
+ * $Id$
+ */
+package org.eclipse.papyrus.java.profile.java;
+
+
+/**
+ * <!-- begin-user-doc -->
+ * A representation of the model object '<em><b>Gen</b></em>'.
+ * <!-- end-user-doc -->
+ *
+ * <p>
+ * The following features are supported:
+ * <ul>
+ * <li>{@link org.eclipse.papyrus.java.profile.java.JavaGen#getSrcName <em>Src Name</em>}</li>
+ * <li>{@link org.eclipse.papyrus.java.profile.java.JavaGen#getProjectName <em>Project Name</em>}</li>
+ * </ul>
+ * </p>
+ *
+ * @see org.eclipse.papyrus.java.profile.java.JavaPackage#getJavaGen()
+ * @model abstract="true"
+ * @generated
+ */
+public interface JavaGen extends JavaNamedElement {
+ /**
+ * Returns the value of the '<em><b>Src Name</b></em>' attribute.
+ * <!-- begin-user-doc -->
+ * <p>
+ * If the meaning of the '<em>Src 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>Src Name</em>' attribute.
+ * @see #setSrcName(String)
+ * @see org.eclipse.papyrus.java.profile.java.JavaPackage#getJavaGen_SrcName()
+ * @model unique="false" required="true" ordered="false"
+ * @generated
+ */
+ String getSrcName();
+
+ /**
+ * Sets the value of the '{@link org.eclipse.papyrus.java.profile.java.JavaGen#getSrcName <em>Src Name</em>}' attribute.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ *
+ * @param value
+ * the new value of the '<em>Src Name</em>' attribute.
+ * @see #getSrcName()
+ * @generated
+ */
+ void setSrcName(String value);
+
+ /**
+ * Returns the value of the '<em><b>Project Name</b></em>' attribute.
+ * <!-- begin-user-doc -->
+ * <p>
+ * If the meaning of the '<em>Project 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>Project Name</em>' attribute.
+ * @see #setProjectName(String)
+ * @see org.eclipse.papyrus.java.profile.java.JavaPackage#getJavaGen_ProjectName()
+ * @model unique="false" required="true" ordered="false"
+ * @generated
+ */
+ String getProjectName();
+
+ /**
+ * Sets the value of the '{@link org.eclipse.papyrus.java.profile.java.JavaGen#getProjectName <em>Project Name</em>}' attribute.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ *
+ * @param value
+ * the new value of the '<em>Project Name</em>' attribute.
+ * @see #getProjectName()
+ * @generated
+ */
+ void setProjectName(String value);
+
+} // JavaGen

Back to the top