/** * 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 Vector</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link org.yakindu.sct.model.sexec.StateVector#getSize <em>Size</em>}</li> * <li>{@link org.yakindu.sct.model.sexec.StateVector#getOffset <em>Offset</em>}</li> * </ul> * * @see org.yakindu.sct.model.sexec.SexecPackage#getStateVector() * @model * @generated */ public interface StateVector extends EObject { /** * Returns the value of the '<em><b>Size</b></em>' attribute. * The default value is <code>"1"</code>. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Size</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Size</em>' attribute. * @see #setSize(int) * @see org.yakindu.sct.model.sexec.SexecPackage#getStateVector_Size() * @model default="1" * @generated */ int getSize(); /** * Sets the value of the '{@link org.yakindu.sct.model.sexec.StateVector#getSize <em>Size</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Size</em>' attribute. * @see #getSize() * @generated */ void setSize(int value); /** * Returns the value of the '<em><b>Offset</b></em>' attribute. * The default value is <code>"0"</code>. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Offset</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Offset</em>' attribute. * @see #setOffset(int) * @see org.yakindu.sct.model.sexec.SexecPackage#getStateVector_Offset() * @model default="0" * @generated */ int getOffset(); /** * Sets the value of the '{@link org.yakindu.sct.model.sexec.StateVector#getOffset <em>Offset</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Offset</em>' attribute. * @see #getOffset() * @generated */ void setOffset(int value); } // StateVector