/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.gmf.codegen.gmfgen; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Gen Navigator Path</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.gmf.codegen.gmfgen.GenNavigatorPath#getSegments <em>Segments</em>}</li> * </ul> * </p> * * @see org.eclipse.gmf.codegen.gmfgen.GMFGenPackage#getGenNavigatorPath() * @model * @generated */ public interface GenNavigatorPath extends EObject { /** * Returns the value of the '<em><b>Segments</b></em>' containment reference list. * The list contents are of type {@link org.eclipse.gmf.codegen.gmfgen.GenNavigatorPathSegment}. * It is bidirectional and its opposite is '{@link org.eclipse.gmf.codegen.gmfgen.GenNavigatorPathSegment#getPath <em>Path</em>}'. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Segments</em>' containment reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Segments</em>' containment reference list. * @see org.eclipse.gmf.codegen.gmfgen.GMFGenPackage#getGenNavigatorPath_Segments() * @see org.eclipse.gmf.codegen.gmfgen.GenNavigatorPathSegment#getPath * @model opposite="path" containment="true" * @generated */ EList<GenNavigatorPathSegment> getSegments(); } // GenNavigatorPath