Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/migration/rhapsody/org.eclipse.papyrus.migration.rhapsody.metamodel/src-gen/org/eclipse/papyrus/migration/rhapsody/rhapsodymetamodel/IUseCaseStereoType.java')
-rw-r--r--extraplugins/migration/rhapsody/org.eclipse.papyrus.migration.rhapsody.metamodel/src-gen/org/eclipse/papyrus/migration/rhapsody/rhapsodymetamodel/IUseCaseStereoType.java114
1 files changed, 114 insertions, 0 deletions
diff --git a/extraplugins/migration/rhapsody/org.eclipse.papyrus.migration.rhapsody.metamodel/src-gen/org/eclipse/papyrus/migration/rhapsody/rhapsodymetamodel/IUseCaseStereoType.java b/extraplugins/migration/rhapsody/org.eclipse.papyrus.migration.rhapsody.metamodel/src-gen/org/eclipse/papyrus/migration/rhapsody/rhapsodymetamodel/IUseCaseStereoType.java
new file mode 100644
index 00000000000..e89d0a18d99
--- /dev/null
+++ b/extraplugins/migration/rhapsody/org.eclipse.papyrus.migration.rhapsody.metamodel/src-gen/org/eclipse/papyrus/migration/rhapsody/rhapsodymetamodel/IUseCaseStereoType.java
@@ -0,0 +1,114 @@
+/**
+ * Copyright (c) 2016 CEA LIST and others.
+ *
+ * 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:
+ * CEA LIST - Initial API and implementation
+ *
+ */
+package org.eclipse.papyrus.migration.rhapsody.rhapsodymetamodel;
+
+import org.eclipse.emf.ecore.EObject;
+
+/**
+ * <!-- begin-user-doc -->
+ * A representation of the model object '<em><b>IUse Case Stereo Type</b></em>'.
+ * <!-- end-user-doc -->
+ *
+ * <p>
+ * The following features are supported:
+ * </p>
+ * <ul>
+ * <li>{@link org.eclipse.papyrus.migration.rhapsody.rhapsodymetamodel.IUseCaseStereoType#getUseCase <em>Use Case</em>}</li>
+ * <li>{@link org.eclipse.papyrus.migration.rhapsody.rhapsodymetamodel.IUseCaseStereoType#getStereoType <em>Stereo Type</em>}</li>
+ * <li>{@link org.eclipse.papyrus.migration.rhapsody.rhapsodymetamodel.IUseCaseStereoType#getEntryPoint <em>Entry Point</em>}</li>
+ * </ul>
+ *
+ * @see org.eclipse.papyrus.migration.rhapsody.rhapsodymetamodel.UMLRhapsodyPackage#getIUseCaseStereoType()
+ * @model
+ * @generated
+ */
+public interface IUseCaseStereoType extends EObject {
+ /**
+ * Returns the value of the '<em><b>Use Case</b></em>' reference.
+ * <!-- begin-user-doc -->
+ * <p>
+ * If the meaning of the '<em>Use Case</em>' reference isn't clear,
+ * there really should be more of a description here...
+ * </p>
+ * <!-- end-user-doc -->
+ * @return the value of the '<em>Use Case</em>' reference.
+ * @see #setUseCase(IUseCase)
+ * @see org.eclipse.papyrus.migration.rhapsody.rhapsodymetamodel.UMLRhapsodyPackage#getIUseCaseStereoType_UseCase()
+ * @model
+ * @generated
+ */
+ IUseCase getUseCase();
+
+ /**
+ * Sets the value of the '{@link org.eclipse.papyrus.migration.rhapsody.rhapsodymetamodel.IUseCaseStereoType#getUseCase <em>Use Case</em>}' reference.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @param value the new value of the '<em>Use Case</em>' reference.
+ * @see #getUseCase()
+ * @generated
+ */
+ void setUseCase(IUseCase value);
+
+ /**
+ * Returns the value of the '<em><b>Stereo Type</b></em>' attribute.
+ * <!-- begin-user-doc -->
+ * <p>
+ * If the meaning of the '<em>Stereo Type</em>' attribute isn't clear,
+ * there really should be more of a description here...
+ * </p>
+ * <!-- end-user-doc -->
+ * @return the value of the '<em>Stereo Type</em>' attribute.
+ * @see #setStereoType(String)
+ * @see org.eclipse.papyrus.migration.rhapsody.rhapsodymetamodel.UMLRhapsodyPackage#getIUseCaseStereoType_StereoType()
+ * @model
+ * @generated
+ */
+ String getStereoType();
+
+ /**
+ * Sets the value of the '{@link org.eclipse.papyrus.migration.rhapsody.rhapsodymetamodel.IUseCaseStereoType#getStereoType <em>Stereo Type</em>}' attribute.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @param value the new value of the '<em>Stereo Type</em>' attribute.
+ * @see #getStereoType()
+ * @generated
+ */
+ void setStereoType(String value);
+
+ /**
+ * Returns the value of the '<em><b>Entry Point</b></em>' attribute.
+ * <!-- begin-user-doc -->
+ * <p>
+ * If the meaning of the '<em>Entry Point</em>' attribute isn't clear,
+ * there really should be more of a description here...
+ * </p>
+ * <!-- end-user-doc -->
+ * @return the value of the '<em>Entry Point</em>' attribute.
+ * @see #setEntryPoint(String)
+ * @see org.eclipse.papyrus.migration.rhapsody.rhapsodymetamodel.UMLRhapsodyPackage#getIUseCaseStereoType_EntryPoint()
+ * @model
+ * @generated
+ */
+ String getEntryPoint();
+
+ /**
+ * Sets the value of the '{@link org.eclipse.papyrus.migration.rhapsody.rhapsodymetamodel.IUseCaseStereoType#getEntryPoint <em>Entry Point</em>}' attribute.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @param value the new value of the '<em>Entry Point</em>' attribute.
+ * @see #getEntryPoint()
+ * @generated
+ */
+ void setEntryPoint(String value);
+
+} // IUseCaseStereoType

Back to the top