blob: 042347c2203f0d6b894e0e4f5565bcbcda710d7c [file] [log] [blame]
/**
* <copyright>
* </copyright>
*
* $Id$
*/
package org.eclipse.mylyn.docs.epub.dc;
import org.eclipse.mylyn.docs.epub.opf.Role;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Creator</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.mylyn.docs.epub.dc.Creator#getRole <em>Role</em>}</li>
* <li>{@link org.eclipse.mylyn.docs.epub.dc.Creator#getFileAs <em>File As</em>}</li>
* </ul>
*
* @see org.eclipse.mylyn.docs.epub.dc.DCPackage#getCreator()
* @model extendedMetaData="kind='mixed'"
* @generated
*/
public interface Creator extends LocalizedDCType {
/**
* Returns the value of the '<em><b>Role</b></em>' attribute.
* The literals are from the enumeration {@link org.eclipse.mylyn.docs.epub.opf.Role}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Role</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Role</em>' attribute.
* @see org.eclipse.mylyn.docs.epub.opf.Role
* @see #isSetRole()
* @see #unsetRole()
* @see #setRole(Role)
* @see org.eclipse.mylyn.docs.epub.dc.DCPackage#getCreator_Role()
* @model unsettable="true"
* extendedMetaData="namespace='http://www.idpf.org/2007/opf'"
* @generated
*/
Role getRole();
/**
* Sets the value of the '{@link org.eclipse.mylyn.docs.epub.dc.Creator#getRole <em>Role</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Role</em>' attribute.
* @see org.eclipse.mylyn.docs.epub.opf.Role
* @see #isSetRole()
* @see #unsetRole()
* @see #getRole()
* @generated
*/
void setRole(Role value);
/**
* Unsets the value of the '{@link org.eclipse.mylyn.docs.epub.dc.Creator#getRole <em>Role</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #isSetRole()
* @see #getRole()
* @see #setRole(Role)
* @generated
*/
void unsetRole();
/**
* Returns whether the value of the '{@link org.eclipse.mylyn.docs.epub.dc.Creator#getRole <em>Role</em>}' attribute is set.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return whether the value of the '<em>Role</em>' attribute is set.
* @see #unsetRole()
* @see #getRole()
* @see #setRole(Role)
* @generated
*/
boolean isSetRole();
/**
* Returns the value of the '<em><b>File As</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>File As</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>File As</em>' attribute.
* @see #setFileAs(String)
* @see org.eclipse.mylyn.docs.epub.dc.DCPackage#getCreator_FileAs()
* @model extendedMetaData="name='file-as' namespace='http://www.idpf.org/2007/opf'"
* @generated
*/
String getFileAs();
/**
* Sets the value of the '{@link org.eclipse.mylyn.docs.epub.dc.Creator#getFileAs <em>File As</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>File As</em>' attribute.
* @see #getFileAs()
* @generated
*/
void setFileAs(String value);
} // Creator