/******************************************************************************* * Copyright (c) 2010-2015 Henshin developers. 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: * TU Berlin, University of Luxembourg, SES S.A. *******************************************************************************/ package de.tub.tfs.henshin.model.layout; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Sub Unit Layout</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link de.tub.tfs.henshin.model.layout.SubUnitLayout#getIndex <em>Index</em>}</li> * <li>{@link de.tub.tfs.henshin.model.layout.SubUnitLayout#getCounter <em>Counter</em>}</li> * <li>{@link de.tub.tfs.henshin.model.layout.SubUnitLayout#getParent <em>Parent</em>}</li> * </ul> * </p> * * @see de.tub.tfs.henshin.model.layout.HenshinLayoutPackage#getSubUnitLayout() * @model * @generated */ public interface SubUnitLayout extends Layout { /** * Returns the value of the '<em><b>Index</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Index</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Index</em>' attribute. * @see #setIndex(int) * @see de.tub.tfs.henshin.model.layout.HenshinLayoutPackage#getSubUnitLayout_Index() * @model * @generated */ int getIndex(); /** * Sets the value of the '{@link de.tub.tfs.henshin.model.layout.SubUnitLayout#getIndex <em>Index</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Index</em>' attribute. * @see #getIndex() * @generated */ void setIndex(int value); /** * Returns the value of the '<em><b>Counter</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Counter</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Counter</em>' attribute. * @see #setCounter(int) * @see de.tub.tfs.henshin.model.layout.HenshinLayoutPackage#getSubUnitLayout_Counter() * @model required="true" * @generated */ int getCounter(); /** * Sets the value of the '{@link de.tub.tfs.henshin.model.layout.SubUnitLayout#getCounter <em>Counter</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Counter</em>' attribute. * @see #getCounter() * @generated */ void setCounter(int value); /** * Returns the value of the '<em><b>Parent</b></em>' reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Parent</em>' reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Parent</em>' reference. * @see #setParent(EObject) * @see de.tub.tfs.henshin.model.layout.HenshinLayoutPackage#getSubUnitLayout_Parent() * @model * @generated */ EObject getParent(); /** * Sets the value of the '{@link de.tub.tfs.henshin.model.layout.SubUnitLayout#getParent <em>Parent</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Parent</em>' reference. * @see #getParent() * @generated */ void setParent(EObject value); } // SubUnitLayout