/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.mylyn.docs.epub.ncx; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Meta</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link org.eclipse.mylyn.docs.epub.ncx.Meta#getContent <em>Content</em>}</li> * <li>{@link org.eclipse.mylyn.docs.epub.ncx.Meta#getName <em>Name</em>}</li> * <li>{@link org.eclipse.mylyn.docs.epub.ncx.Meta#getScheme <em>Scheme</em>}</li> * </ul> * * @see org.eclipse.mylyn.docs.epub.ncx.NCXPackage#getMeta() * @model * @generated */ public interface Meta extends EObject { /** * Returns the value of the '<em><b>Content</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Content</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Content</em>' attribute. * @see #setContent(Object) * @see org.eclipse.mylyn.docs.epub.ncx.NCXPackage#getMeta_Content() * @model dataType="org.eclipse.emf.ecore.xml.type.AnySimpleType" required="true" * extendedMetaData="kind='attribute' name='content'" * @generated */ Object getContent(); /** * Sets the value of the '{@link org.eclipse.mylyn.docs.epub.ncx.Meta#getContent <em>Content</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Content</em>' attribute. * @see #getContent() * @generated */ void setContent(Object value); /** * Returns the value of the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Name</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Name</em>' attribute. * @see #setName(Object) * @see org.eclipse.mylyn.docs.epub.ncx.NCXPackage#getMeta_Name() * @model dataType="org.eclipse.emf.ecore.xml.type.AnySimpleType" required="true" * extendedMetaData="kind='attribute' name='name'" * @generated */ Object getName(); /** * Sets the value of the '{@link org.eclipse.mylyn.docs.epub.ncx.Meta#getName <em>Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Name</em>' attribute. * @see #getName() * @generated */ void setName(Object value); /** * Returns the value of the '<em><b>Scheme</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Scheme</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Scheme</em>' attribute. * @see #setScheme(Object) * @see org.eclipse.mylyn.docs.epub.ncx.NCXPackage#getMeta_Scheme() * @model dataType="org.eclipse.emf.ecore.xml.type.AnySimpleType" * extendedMetaData="kind='attribute' name='scheme'" * @generated */ Object getScheme(); /** * Sets the value of the '{@link org.eclipse.mylyn.docs.epub.ncx.Meta#getScheme <em>Scheme</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Scheme</em>' attribute. * @see #getScheme() * @generated */ void setScheme(Object value); } // Meta