blob: 3246bddd5990399dd1a1d3433cac1f7f15045ea7 [file] [log] [blame]
/**
* <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>Content</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.mylyn.docs.epub.ncx.Content#getId <em>Id</em>}</li>
* <li>{@link org.eclipse.mylyn.docs.epub.ncx.Content#getSrc <em>Src</em>}</li>
* </ul>
*
* @see org.eclipse.mylyn.docs.epub.ncx.NCXPackage#getContent()
* @model
* @generated
*/
public interface Content extends EObject {
/**
* 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#getContent_Id()
* @model id="true" dataType="org.eclipse.emf.ecore.xml.type.ID"
* extendedMetaData="kind='attribute' name='id'"
* @generated
*/
String getId();
/**
* Sets the value of the '{@link org.eclipse.mylyn.docs.epub.ncx.Content#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>Src</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Src</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Src</em>' attribute.
* @see #setSrc(String)
* @see org.eclipse.mylyn.docs.epub.ncx.NCXPackage#getContent_Src()
* @model dataType="org.eclipse.mylyn.docs.epub.ncx.URI" required="true"
* extendedMetaData="kind='attribute' name='src'"
* @generated
*/
String getSrc();
/**
* Sets the value of the '{@link org.eclipse.mylyn.docs.epub.ncx.Content#getSrc <em>Src</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Src</em>' attribute.
* @see #getSrc()
* @generated
*/
void setSrc(String value);
} // Content