/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.emf.eef.mapping.navigation; import org.eclipse.emf.ecore.EClassifier; import org.eclipse.emf.ecore.EReference; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Declarative Navigation Step</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.emf.eef.mapping.navigation.DeclarativeNavigationStep#getIndex <em>Index</em>}</li> * <li>{@link org.eclipse.emf.eef.mapping.navigation.DeclarativeNavigationStep#getFeature <em>Feature</em>}</li> * <li>{@link org.eclipse.emf.eef.mapping.navigation.DeclarativeNavigationStep#getDiscriminatorType <em>Discriminator Type</em>}</li> * </ul> * </p> * * @see org.eclipse.emf.eef.mapping.navigation.NavigationPackage#getDeclarativeNavigationStep() * @model * @generated */ public interface DeclarativeNavigationStep extends NavigationStep { /** * 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 org.eclipse.emf.eef.mapping.navigation.NavigationPackage#getDeclarativeNavigationStep_Index() * @model * @generated */ int getIndex(); /** * Sets the value of the '{@link org.eclipse.emf.eef.mapping.navigation.DeclarativeNavigationStep#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>Feature</b></em>' reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Feature</em>' reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Feature</em>' reference. * @see #setFeature(EReference) * @see org.eclipse.emf.eef.mapping.navigation.NavigationPackage#getDeclarativeNavigationStep_Feature() * @model required="true" * @generated */ EReference getFeature(); /** * Sets the value of the '{@link org.eclipse.emf.eef.mapping.navigation.DeclarativeNavigationStep#getFeature <em>Feature</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Feature</em>' reference. * @see #getFeature() * @generated */ void setFeature(EReference value); /** * Returns the value of the '<em><b>Discriminator Type</b></em>' reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Discriminator Type</em>' reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Discriminator Type</em>' reference. * @see #setDiscriminatorType(EClassifier) * @see org.eclipse.emf.eef.mapping.navigation.NavigationPackage#getDeclarativeNavigationStep_DiscriminatorType() * @model * @generated */ EClassifier getDiscriminatorType(); /** * Sets the value of the '{@link org.eclipse.emf.eef.mapping.navigation.DeclarativeNavigationStep#getDiscriminatorType <em>Discriminator Type</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Discriminator Type</em>' reference. * @see #getDiscriminatorType() * @generated */ void setDiscriminatorType(EClassifier value); } // DeclarativeNavigationStep