/** * Copyright (c) 2010-2011 United States Government as represented by the Administrator for The National Aeronautics and Space Administration. All Rights Reserved. */ package net.certware.evidence.hugin.instance; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Variable</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link net.certware.evidence.hugin.instance.InstanceVariable#getVariableName <em>Variable Name</em>}</li> * <li>{@link net.certware.evidence.hugin.instance.InstanceVariable#getStates <em>States</em>}</li> * </ul> * </p> * * @see net.certware.evidence.hugin.instance.InstancePackage#getInstanceVariable() * @model * @generated */ public interface InstanceVariable extends EObject { /** * Returns the value of the '<em><b>Variable Name</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Variable 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>Variable Name</em>' attribute. * @see #setVariableName(String) * @see net.certware.evidence.hugin.instance.InstancePackage#getInstanceVariable_VariableName() * @model * @generated */ String getVariableName(); /** * Sets the value of the '{@link net.certware.evidence.hugin.instance.InstanceVariable#getVariableName <em>Variable Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Variable Name</em>' attribute. * @see #getVariableName() * @generated */ void setVariableName(String value); /** * Returns the value of the '<em><b>States</b></em>' containment reference list. * The list contents are of type {@link net.certware.evidence.hugin.instance.InstanceState}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>States</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>States</em>' containment reference list. * @see net.certware.evidence.hugin.instance.InstancePackage#getInstanceVariable_States() * @model containment="true" * @generated */ EList<InstanceState> getStates(); } // InstanceVariable