/**
*/
package petrinet;
import org.eclipse.emf.common.util.EList;
/**
*
* A representation of the model object 'Place'.
*
*
*
* The following features are supported:
*
*
* - {@link petrinet.Place#getTokens Tokens}
* - {@link petrinet.Place#getArcs Arcs}
*
*
* @see petrinet.PetrinetPackage#getPlace()
* @model
* @generated
*/
public interface Place extends Node {
/**
* Returns the value of the 'Tokens' attribute.
*
*
* @return the value of the 'Tokens' attribute.
* @see #setTokens(int)
* @see petrinet.PetrinetPackage#getPlace_Tokens()
* @model required="true"
* @generated
*/
int getTokens();
/**
* Sets the value of the '{@link petrinet.Place#getTokens Tokens}' attribute.
*
*
* @param value the new value of the 'Tokens' attribute.
* @see #getTokens()
* @generated
*/
void setTokens(int value);
/**
* Returns the value of the 'Arcs' reference list.
* The list contents are of type {@link petrinet.Arc}.
* It is bidirectional and its opposite is '{@link petrinet.Arc#getPlace Place}'.
*
*
* @return the value of the 'Arcs' reference list.
* @see petrinet.PetrinetPackage#getPlace_Arcs()
* @see petrinet.Arc#getPlace
* @model opposite="place"
* @generated
*/
EList getArcs();
} // Place