/** * Copyright (c) 2015 committers of YAKINDU and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * Contributors: * committers of YAKINDU - initial API and implementation * */ package org.yakindu.sct.model.sexec; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>State Case</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link org.yakindu.sct.model.sexec.StateCase#getState <em>State</em>}</li> * <li>{@link org.yakindu.sct.model.sexec.StateCase#getStep <em>Step</em>}</li> * </ul> * * @see org.yakindu.sct.model.sexec.SexecPackage#getStateCase() * @model * @generated */ public interface StateCase extends EObject { /** * Returns the value of the '<em><b>State</b></em>' reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>State</em>' reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>State</em>' reference. * @see #setState(ExecutionState) * @see org.yakindu.sct.model.sexec.SexecPackage#getStateCase_State() * @model * @generated */ ExecutionState getState(); /** * Sets the value of the '{@link org.yakindu.sct.model.sexec.StateCase#getState <em>State</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>State</em>' reference. * @see #getState() * @generated */ void setState(ExecutionState value); /** * Returns the value of the '<em><b>Step</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Step</em>' containment reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Step</em>' containment reference. * @see #setStep(Step) * @see org.yakindu.sct.model.sexec.SexecPackage#getStateCase_Step() * @model containment="true" * @generated */ Step getStep(); /** * Sets the value of the '{@link org.yakindu.sct.model.sexec.StateCase#getStep <em>Step</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Step</em>' containment reference. * @see #getStep() * @generated */ void setStep(Step value); } // StateCase