77 lines
2.2 KiB
Java
77 lines
2.2 KiB
Java
/**
|
|
* generated by Xtext 2.23.0
|
|
*/
|
|
package fr.n7.game;
|
|
|
|
import org.eclipse.emf.common.util.EList;
|
|
|
|
import org.eclipse.emf.ecore.EObject;
|
|
|
|
/**
|
|
* <!-- begin-user-doc -->
|
|
* A representation of the model object '<em><b>Transformation</b></em>'.
|
|
* <!-- end-user-doc -->
|
|
*
|
|
* <p>
|
|
* The following features are supported:
|
|
* </p>
|
|
* <ul>
|
|
* <li>{@link fr.n7.game.Transformation#getCondition <em>Condition</em>}</li>
|
|
* <li>{@link fr.n7.game.Transformation#getObjetsIn <em>Objets In</em>}</li>
|
|
* <li>{@link fr.n7.game.Transformation#getObjetsOut <em>Objets Out</em>}</li>
|
|
* </ul>
|
|
*
|
|
* @see fr.n7.game.GamePackage#getTransformation()
|
|
* @model
|
|
* @generated
|
|
*/
|
|
public interface Transformation extends EObject
|
|
{
|
|
/**
|
|
* Returns the value of the '<em><b>Condition</b></em>' containment reference.
|
|
* <!-- begin-user-doc -->
|
|
* <!-- end-user-doc -->
|
|
* @return the value of the '<em>Condition</em>' containment reference.
|
|
* @see #setCondition(Condition)
|
|
* @see fr.n7.game.GamePackage#getTransformation_Condition()
|
|
* @model containment="true"
|
|
* @generated
|
|
*/
|
|
Condition getCondition();
|
|
|
|
/**
|
|
* Sets the value of the '{@link fr.n7.game.Transformation#getCondition <em>Condition</em>}' containment reference.
|
|
* <!-- begin-user-doc -->
|
|
* <!-- end-user-doc -->
|
|
* @param value the new value of the '<em>Condition</em>' containment reference.
|
|
* @see #getCondition()
|
|
* @generated
|
|
*/
|
|
void setCondition(Condition value);
|
|
|
|
/**
|
|
* Returns the value of the '<em><b>Objets In</b></em>' attribute list.
|
|
* The list contents are of type {@link java.lang.String}.
|
|
* <!-- begin-user-doc -->
|
|
* <!-- end-user-doc -->
|
|
* @return the value of the '<em>Objets In</em>' attribute list.
|
|
* @see fr.n7.game.GamePackage#getTransformation_ObjetsIn()
|
|
* @model unique="false"
|
|
* @generated
|
|
*/
|
|
EList<String> getObjetsIn();
|
|
|
|
/**
|
|
* Returns the value of the '<em><b>Objets Out</b></em>' attribute list.
|
|
* The list contents are of type {@link java.lang.String}.
|
|
* <!-- begin-user-doc -->
|
|
* <!-- end-user-doc -->
|
|
* @return the value of the '<em>Objets Out</em>' attribute list.
|
|
* @see fr.n7.game.GamePackage#getTransformation_ObjetsOut()
|
|
* @model unique="false"
|
|
* @generated
|
|
*/
|
|
EList<String> getObjetsOut();
|
|
|
|
} // Transformation
|