/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.gmf.codegen.gmfgen; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Gen Navigator Path Segment</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.gmf.codegen.gmfgen.GenNavigatorPathSegment#getPath <em>Path</em>}</li> * <li>{@link org.eclipse.gmf.codegen.gmfgen.GenNavigatorPathSegment#getFrom <em>From</em>}</li> * <li>{@link org.eclipse.gmf.codegen.gmfgen.GenNavigatorPathSegment#getTo <em>To</em>}</li> * </ul> * </p> * * @see org.eclipse.gmf.codegen.gmfgen.GMFGenPackage#getGenNavigatorPathSegment() * @model * @generated */ public interface GenNavigatorPathSegment extends EObject { /** * Returns the value of the '<em><b>Path</b></em>' container reference. * It is bidirectional and its opposite is '{@link org.eclipse.gmf.codegen.gmfgen.GenNavigatorPath#getSegments <em>Segments</em>}'. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Path</em>' container reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Path</em>' container reference. * @see org.eclipse.gmf.codegen.gmfgen.GMFGenPackage#getGenNavigatorPathSegment_Path() * @see org.eclipse.gmf.codegen.gmfgen.GenNavigatorPath#getSegments * @model opposite="segments" resolveProxies="false" transient="false" changeable="false" * @generated */ GenNavigatorPath getPath(); /** * Returns the value of the '<em><b>From</b></em>' reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>From</em>' reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>From</em>' reference. * @see #setFrom(GenCommonBase) * @see org.eclipse.gmf.codegen.gmfgen.GMFGenPackage#getGenNavigatorPathSegment_From() * @model required="true" * @generated */ GenCommonBase getFrom(); /** * Sets the value of the '{@link org.eclipse.gmf.codegen.gmfgen.GenNavigatorPathSegment#getFrom <em>From</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>From</em>' reference. * @see #getFrom() * @generated */ void setFrom(GenCommonBase value); /** * Returns the value of the '<em><b>To</b></em>' reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>To</em>' reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>To</em>' reference. * @see #setTo(GenCommonBase) * @see org.eclipse.gmf.codegen.gmfgen.GMFGenPackage#getGenNavigatorPathSegment_To() * @model required="true" * @generated */ GenCommonBase getTo(); /** * Sets the value of the '{@link org.eclipse.gmf.codegen.gmfgen.GenNavigatorPathSegment#getTo <em>To</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>To</em>' reference. * @see #getTo() * @generated */ void setTo(GenCommonBase value); } // GenNavigatorPathSegment