/** */ package net.certware.evidence.hugin.netDSL; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Basic Node</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link net.certware.evidence.hugin.netDSL.BasicNode#getKeyword <em>Keyword</em>}</li> * <li>{@link net.certware.evidence.hugin.netDSL.BasicNode#getId <em>Id</em>}</li> * <li>{@link net.certware.evidence.hugin.netDSL.BasicNode#getAttributes <em>Attributes</em>}</li> * </ul> * </p> * * @see net.certware.evidence.hugin.netDSL.NetDSLPackage#getBasicNode() * @model * @generated */ public interface BasicNode extends DomainElement { /** * Returns the value of the '<em><b>Keyword</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Keyword</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Keyword</em>' attribute. * @see #setKeyword(String) * @see net.certware.evidence.hugin.netDSL.NetDSLPackage#getBasicNode_Keyword() * @model * @generated */ String getKeyword(); /** * Sets the value of the '{@link net.certware.evidence.hugin.netDSL.BasicNode#getKeyword <em>Keyword</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Keyword</em>' attribute. * @see #getKeyword() * @generated */ void setKeyword(String value); /** * Returns the value of the '<em><b>Id</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Id</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Id</em>' attribute. * @see #setId(String) * @see net.certware.evidence.hugin.netDSL.NetDSLPackage#getBasicNode_Id() * @model * @generated */ String getId(); /** * Sets the value of the '{@link net.certware.evidence.hugin.netDSL.BasicNode#getId <em>Id</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Id</em>' attribute. * @see #getId() * @generated */ void setId(String value); /** * Returns the value of the '<em><b>Attributes</b></em>' containment reference list. * The list contents are of type {@link net.certware.evidence.hugin.netDSL.Attribute}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Attributes</em>' containment reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Attributes</em>' containment reference list. * @see net.certware.evidence.hugin.netDSL.NetDSLPackage#getBasicNode_Attributes() * @model containment="true" * @generated */ EList<Attribute> getAttributes(); } // BasicNode