/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.mylyn.docs.epub.dc; import org.eclipse.emf.ecore.EObject; import org.eclipse.emf.ecore.util.FeatureMap; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Type</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link org.eclipse.mylyn.docs.epub.dc.DCType#getId <em>Id</em>}</li> * <li>{@link org.eclipse.mylyn.docs.epub.dc.DCType#getMixed <em>Mixed</em>}</li> * </ul> * * @see org.eclipse.mylyn.docs.epub.dc.DCPackage#getDCType() * @model abstract="true" * extendedMetaData="kind='mixed'" * @generated */ public interface DCType 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.dc.DCPackage#getDCType_Id() * @model * @generated */ String getId(); /** * Sets the value of the '{@link org.eclipse.mylyn.docs.epub.dc.DCType#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>Mixed</b></em>' attribute list. * The list contents are of type {@link org.eclipse.emf.ecore.util.FeatureMap.Entry}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Mixed</em>' attribute list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Mixed</em>' attribute list. * @see org.eclipse.mylyn.docs.epub.dc.DCPackage#getDCType_Mixed() * @model dataType="org.eclipse.emf.ecore.EFeatureMapEntry" required="true" many="true" * extendedMetaData="kind='elementWildcard' name=':mixed'" * @generated */ FeatureMap getMixed(); } // DCType