/** * * * */ package org.eclipse.osee.ats.dsl.atsDsl; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'State Def'. * * *

* The following features are supported: *

*

* * @see org.eclipse.osee.ats.dsl.atsDsl.AtsDslPackage#getStateDef() * @model * @generated */ public interface StateDef extends EObject { /** * Returns the value of the 'Name' attribute. * *

* If the meaning of the 'Name' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Name' attribute. * @see #setName(String) * @see org.eclipse.osee.ats.dsl.atsDsl.AtsDslPackage#getStateDef_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link org.eclipse.osee.ats.dsl.atsDsl.StateDef#getName Name}' attribute. * * * @param value the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the 'Description' attribute. * *

* If the meaning of the 'Description' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Description' attribute. * @see #setDescription(String) * @see org.eclipse.osee.ats.dsl.atsDsl.AtsDslPackage#getStateDef_Description() * @model * @generated */ String getDescription(); /** * Sets the value of the '{@link org.eclipse.osee.ats.dsl.atsDsl.StateDef#getDescription Description}' attribute. * * * @param value the new value of the 'Description' attribute. * @see #getDescription() * @generated */ void setDescription(String value); /** * Returns the value of the 'Page Type' attribute. * *

* If the meaning of the 'Page Type' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Page Type' attribute. * @see #setPageType(String) * @see org.eclipse.osee.ats.dsl.atsDsl.AtsDslPackage#getStateDef_PageType() * @model * @generated */ String getPageType(); /** * Sets the value of the '{@link org.eclipse.osee.ats.dsl.atsDsl.StateDef#getPageType Page Type}' attribute. * * * @param value the new value of the 'Page Type' attribute. * @see #getPageType() * @generated */ void setPageType(String value); /** * Returns the value of the 'Ordinal' attribute. * *

* If the meaning of the 'Ordinal' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Ordinal' attribute. * @see #setOrdinal(int) * @see org.eclipse.osee.ats.dsl.atsDsl.AtsDslPackage#getStateDef_Ordinal() * @model * @generated */ int getOrdinal(); /** * Sets the value of the '{@link org.eclipse.osee.ats.dsl.atsDsl.StateDef#getOrdinal Ordinal}' attribute. * * * @param value the new value of the 'Ordinal' attribute. * @see #getOrdinal() * @generated */ void setOrdinal(int value); /** * Returns the value of the 'Transition States' containment reference list. * The list contents are of type {@link org.eclipse.osee.ats.dsl.atsDsl.ToState}. * *

* If the meaning of the 'Transition States' containment reference list isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Transition States' containment reference list. * @see org.eclipse.osee.ats.dsl.atsDsl.AtsDslPackage#getStateDef_TransitionStates() * @model containment="true" * @generated */ EList getTransitionStates(); /** * Returns the value of the 'Rules' attribute list. * The list contents are of type {@link java.lang.String}. * *

* If the meaning of the 'Rules' attribute list isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Rules' attribute list. * @see org.eclipse.osee.ats.dsl.atsDsl.AtsDslPackage#getStateDef_Rules() * @model unique="false" * @generated */ EList getRules(); /** * Returns the value of the 'Decision Reviews' containment reference list. * The list contents are of type {@link org.eclipse.osee.ats.dsl.atsDsl.DecisionReviewRef}. * *

* If the meaning of the 'Decision Reviews' containment reference list isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Decision Reviews' containment reference list. * @see org.eclipse.osee.ats.dsl.atsDsl.AtsDslPackage#getStateDef_DecisionReviews() * @model containment="true" * @generated */ EList getDecisionReviews(); /** * Returns the value of the 'Peer Reviews' containment reference list. * The list contents are of type {@link org.eclipse.osee.ats.dsl.atsDsl.PeerReviewRef}. * *

* If the meaning of the 'Peer Reviews' containment reference list isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Peer Reviews' containment reference list. * @see org.eclipse.osee.ats.dsl.atsDsl.AtsDslPackage#getStateDef_PeerReviews() * @model containment="true" * @generated */ EList getPeerReviews(); /** * Returns the value of the 'Percent Weight' attribute. * *

* If the meaning of the 'Percent Weight' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Percent Weight' attribute. * @see #setPercentWeight(int) * @see org.eclipse.osee.ats.dsl.atsDsl.AtsDslPackage#getStateDef_PercentWeight() * @model * @generated */ int getPercentWeight(); /** * Sets the value of the '{@link org.eclipse.osee.ats.dsl.atsDsl.StateDef#getPercentWeight Percent Weight}' attribute. * * * @param value the new value of the 'Percent Weight' attribute. * @see #getPercentWeight() * @generated */ void setPercentWeight(int value); /** * Returns the value of the 'Layout' containment reference. * *

* If the meaning of the 'Layout' containment reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Layout' containment reference. * @see #setLayout(LayoutType) * @see org.eclipse.osee.ats.dsl.atsDsl.AtsDslPackage#getStateDef_Layout() * @model containment="true" * @generated */ LayoutType getLayout(); /** * Sets the value of the '{@link org.eclipse.osee.ats.dsl.atsDsl.StateDef#getLayout Layout}' containment reference. * * * @param value the new value of the 'Layout' containment reference. * @see #getLayout() * @generated */ void setLayout(LayoutType value); } // StateDef