/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.mylyn.docs.epub.ncx; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Nav Point</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link org.eclipse.mylyn.docs.epub.ncx.NavPoint#getNavLabels <em>Nav Labels</em>}</li> * <li>{@link org.eclipse.mylyn.docs.epub.ncx.NavPoint#getContent <em>Content</em>}</li> * <li>{@link org.eclipse.mylyn.docs.epub.ncx.NavPoint#getNavPoints <em>Nav Points</em>}</li> * <li>{@link org.eclipse.mylyn.docs.epub.ncx.NavPoint#getClass_ <em>Class</em>}</li> * <li>{@link org.eclipse.mylyn.docs.epub.ncx.NavPoint#getId <em>Id</em>}</li> * <li>{@link org.eclipse.mylyn.docs.epub.ncx.NavPoint#getPlayOrder <em>Play Order</em>}</li> * </ul> * * @see org.eclipse.mylyn.docs.epub.ncx.NCXPackage#getNavPoint() * @model * @generated */ public interface NavPoint extends EObject { /** * Returns the value of the '<em><b>Nav Labels</b></em>' containment reference list. * The list contents are of type {@link org.eclipse.mylyn.docs.epub.ncx.NavLabel}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Nav Labels</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>Nav Labels</em>' containment reference list. * @see org.eclipse.mylyn.docs.epub.ncx.NCXPackage#getNavPoint_NavLabels() * @model containment="true" required="true" * extendedMetaData="name='navLabel' namespace='##targetNamespace'" * @generated */ EList<NavLabel> getNavLabels(); /** * Returns the value of the '<em><b>Content</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Content</em>' containment reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Content</em>' containment reference. * @see #setContent(Content) * @see org.eclipse.mylyn.docs.epub.ncx.NCXPackage#getNavPoint_Content() * @model containment="true" required="true" * extendedMetaData="kind='element' name='content' namespace='##targetNamespace'" * @generated */ Content getContent(); /** * Sets the value of the '{@link org.eclipse.mylyn.docs.epub.ncx.NavPoint#getContent <em>Content</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Content</em>' containment reference. * @see #getContent() * @generated */ void setContent(Content value); /** * Returns the value of the '<em><b>Nav Points</b></em>' containment reference list. * The list contents are of type {@link org.eclipse.mylyn.docs.epub.ncx.NavPoint}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Nav Points</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>Nav Points</em>' containment reference list. * @see org.eclipse.mylyn.docs.epub.ncx.NCXPackage#getNavPoint_NavPoints() * @model containment="true" * extendedMetaData="kind='element' name='navPoint' namespace='##targetNamespace'" * @generated */ EList<NavPoint> getNavPoints(); /** * Returns the value of the '<em><b>Class</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Class</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Class</em>' attribute. * @see #setClass(Object) * @see org.eclipse.mylyn.docs.epub.ncx.NCXPackage#getNavPoint_Class() * @model dataType="org.eclipse.emf.ecore.xml.type.AnySimpleType" * extendedMetaData="kind='attribute' name='class'" * @generated */ Object getClass_(); /** * Sets the value of the '{@link org.eclipse.mylyn.docs.epub.ncx.NavPoint#getClass_ <em>Class</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Class</em>' attribute. * @see #getClass_() * @generated */ void setClass(Object value); /** * Returns the value of the '<em><b>Id</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Id</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Id</em>' attribute. * @see #setId(String) * @see org.eclipse.mylyn.docs.epub.ncx.NCXPackage#getNavPoint_Id() * @model id="true" dataType="org.eclipse.emf.ecore.xml.type.ID" required="true" * extendedMetaData="kind='attribute' name='id'" * @generated */ String getId(); /** * Sets the value of the '{@link org.eclipse.mylyn.docs.epub.ncx.NavPoint#getId <em>Id</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Id</em>' attribute. * @see #getId() * @generated */ void setId(String value); /** * Returns the value of the '<em><b>Play Order</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Play Order</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Play Order</em>' attribute. * @see #setPlayOrder(int) * @see org.eclipse.mylyn.docs.epub.ncx.NCXPackage#getNavPoint_PlayOrder() * @model required="true" * extendedMetaData="kind='attribute' name='playOrder'" * @generated */ int getPlayOrder(); /** * Sets the value of the '{@link org.eclipse.mylyn.docs.epub.ncx.NavPoint#getPlayOrder <em>Play Order</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Play Order</em>' attribute. * @see #getPlayOrder() * @generated */ void setPlayOrder(int value); } // NavPoint