/** */ package org.w3.xlink; import org.eclipse.emf.common.util.EList; import java.util.List; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Title Elt Type</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.w3.xlink.TitleEltType#getLang <em>Lang</em>}</li> * <li>{@link org.w3.xlink.TitleEltType#getType <em>Type</em>}</li> * <li>{@link org.w3.xlink.TitleEltType#getContents <em>Contents</em>}</li> * </ul> * </p> * * @see org.w3.xlink.XlinkPackage#getTitleEltType() * @model extendedMetaData="name='titleEltType' kind='mixed'" * @generated */ public interface TitleEltType extends EObject { /** * Returns the value of the '<em><b>Lang</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * <!-- begin-model-doc --> * * xml:lang is not required, but provides much of the * motivation for title elements in addition to attributes, and so * is provided here for convenience. * <!-- end-model-doc --> * @return the value of the '<em>Lang</em>' attribute. * @see #setLang(String) * @see org.w3.xlink.XlinkPackage#getTitleEltType_Lang() * @model dataType="org.eclipse.emf.ecore.xml.namespace.LangType" * extendedMetaData="kind='attribute' name='lang' namespace='http://www.w3.org/XML/1998/namespace'" * @generated */ String getLang(); /** * Sets the value of the '{@link org.w3.xlink.TitleEltType#getLang <em>Lang</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Lang</em>' attribute. * @see #getLang() * @generated */ void setLang(String value); /** * Returns the value of the '<em><b>Type</b></em>' attribute. * The default value is <code>"title"</code>. * The literals are from the enumeration {@link org.w3.xlink.TypeType}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Type</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Type</em>' attribute. * @see org.w3.xlink.TypeType * @see #isSetType() * @see #unsetType() * @see #setType(TypeType) * @see org.w3.xlink.XlinkPackage#getTitleEltType_Type() * @model default="title" unsettable="true" required="true" * extendedMetaData="kind='attribute' name='type' namespace='##targetNamespace'" * @generated */ TypeType getType(); /** * Sets the value of the '{@link org.w3.xlink.TitleEltType#getType <em>Type</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Type</em>' attribute. * @see org.w3.xlink.TypeType * @see #isSetType() * @see #unsetType() * @see #getType() * @generated */ void setType(TypeType value); /** * Unsets the value of the '{@link org.w3.xlink.TitleEltType#getType <em>Type</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #isSetType() * @see #getType() * @see #setType(TypeType) * @generated */ void unsetType(); /** * Returns whether the value of the '{@link org.w3.xlink.TitleEltType#getType <em>Type</em>}' attribute is set. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return whether the value of the '<em>Type</em>' attribute is set. * @see #unsetType() * @see #getType() * @see #setType(TypeType) * @generated */ boolean isSetType(); /** * @model type="java.lang.Object" containment="false" transient="true" changeable="false" volatile="true" derived="true" * extendedMetaData="kind='element' name='contents' namespace='##targetNamespace' */ EList getContents(); } // TitleEltType