projet-mini-genie-logiciel-.../fr.n7.simplePDL/src/simplepdl/Resource.java
2021-10-03 22:23:04 +02:00

69 lines
1.7 KiB
Java

/**
*/
package simplepdl;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Resource</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link simplepdl.Resource#getQuantity <em>Quantity</em>}</li>
* <li>{@link simplepdl.Resource#getName <em>Name</em>}</li>
* </ul>
*
* @see simplepdl.SimplepdlPackage#getResource()
* @model
* @generated
*/
public interface Resource extends ProcessElement {
/**
* Returns the value of the '<em><b>Quantity</b></em>' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Quantity</em>' attribute.
* @see #setQuantity(int)
* @see simplepdl.SimplepdlPackage#getResource_Quantity()
* @model required="true"
* @generated
*/
int getQuantity();
/**
* Sets the value of the '{@link simplepdl.Resource#getQuantity <em>Quantity</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Quantity</em>' attribute.
* @see #getQuantity()
* @generated
*/
void setQuantity(int value);
/**
* Returns the value of the '<em><b>Name</b></em>' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Name</em>' attribute.
* @see #setName(String)
* @see simplepdl.SimplepdlPackage#getResource_Name()
* @model required="true"
* @generated
*/
String getName();
/**
* Sets the value of the '{@link simplepdl.Resource#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);
} // Resource