/** * <copyright> * </copyright> * * $Id$ */ package IAC; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Node</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link IAC.Node#getName <em>Name</em>}</li> * <li>{@link IAC.Node#getType <em>Type</em>}</li> * <li>{@link IAC.Node#getLabel <em>Label</em>}</li> * <li>{@link IAC.Node#getActivity <em>Activity</em>}</li> * <li>{@link IAC.Node#getVariables <em>Variables</em>}</li> * <li>{@link IAC.Node#getFather_of <em>Father of</em>}</li> * </ul> * </p> * * @see IAC.IACPackage#getNode() * @model * @generated */ public interface Node extends EObject { /** * Returns the value of the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>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>Name</em>' attribute. * @see #setName(String) * @see IAC.IACPackage#getNode_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link IAC.Node#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); /** * Returns the value of the '<em><b>Type</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>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>Type</em>' attribute. * @see #setType(String) * @see IAC.IACPackage#getNode_Type() * @model * @generated */ String getType(); /** * Sets the value of the '{@link IAC.Node#getType <em>Type</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Type</em>' attribute. * @see #getType() * @generated */ void setType(String value); /** * Returns the value of the '<em><b>Label</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Label</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Label</em>' attribute. * @see #setLabel(String) * @see IAC.IACPackage#getNode_Label() * @model * @generated */ String getLabel(); /** * Sets the value of the '{@link IAC.Node#getLabel <em>Label</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Label</em>' attribute. * @see #getLabel() * @generated */ void setLabel(String value); /** * Returns the value of the '<em><b>Activity</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Activity</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Activity</em>' attribute. * @see #setActivity(String) * @see IAC.IACPackage#getNode_Activity() * @model * @generated */ String getActivity(); /** * Sets the value of the '{@link IAC.Node#getActivity <em>Activity</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Activity</em>' attribute. * @see #getActivity() * @generated */ void setActivity(String value); /** * Returns the value of the '<em><b>Variables</b></em>' reference list. * The list contents are of type {@link IAC.Variable}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Variables</em>' reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Variables</em>' reference list. * @see IAC.IACPackage#getNode_Variables() * @model * @generated */ EList<Variable> getVariables(); /** * Returns the value of the '<em><b>Father of</b></em>' reference list. * The list contents are of type {@link IAC.Node}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Father of</em>' reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Father of</em>' reference list. * @see IAC.IACPackage#getNode_Father_of() * @model * @generated */ EList<Node> getFather_of(); } // Node