| /** |
| * <copyright> |
| * </copyright> |
| * |
| * $Id$ |
| */ |
| package lobj; |
| |
| import org.eclipse.emf.ecore.EObject; |
| |
| /** |
| * <!-- begin-user-doc --> A representation of the model object '<em><b>Publisher</b></em>'. <!-- |
| * end-user-doc --> |
| * |
| * <p> |
| * The following features are supported: |
| * <ul> |
| * <li>{@link lobj.Publisher#getPublishername <em>Publishername</em>}</li> |
| * <li>{@link lobj.Publisher#getAddress <em>Address</em>}</li> |
| * <li>{@link lobj.Publisher#getId <em>Id</em>}</li> |
| * </ul> |
| * </p> |
| * |
| * @see lobj.LobjPackage#getPublisher() |
| * @model extendedMetaData="kind='elementOnly'" |
| * @generated |
| */ |
| public interface Publisher extends EObject { |
| /** |
| * Returns the value of the '<em><b>Publishername</b></em>' attribute. <!-- begin-user-doc --> |
| * <p> |
| * If the meaning of the '<em>Publishername</em>' attribute isn't clear, there really should be |
| * more of a description here... |
| * </p> |
| * <!-- end-user-doc --> |
| * |
| * @return the value of the '<em>Publishername</em>' attribute. |
| * @see #setPublishername(String) |
| * @see lobj.LobjPackage#getPublisher_Publishername() |
| * @model unique="false" extendedMetaData="kind='element'" |
| * @generated |
| */ |
| String getPublishername(); |
| |
| /** |
| * Sets the value of the '{@link lobj.Publisher#getPublishername <em>Publishername</em>}' |
| * attribute. <!-- begin-user-doc --> <!-- end-user-doc --> |
| * |
| * @param value |
| * the new value of the '<em>Publishername</em>' attribute. |
| * @see #getPublishername() |
| * @generated |
| */ |
| void setPublishername(String value); |
| |
| /** |
| * Returns the value of the '<em><b>Address</b></em>' containment reference. <!-- begin-user-doc |
| * --> |
| * <p> |
| * If the meaning of the '<em>Address</em>' containment reference isn't clear, there really should |
| * be more of a description here... |
| * </p> |
| * <!-- end-user-doc --> |
| * |
| * @return the value of the '<em>Address</em>' containment reference. |
| * @see #setAddress(Address) |
| * @see lobj.LobjPackage#getPublisher_Address() |
| * @model containment="true" extendedMetaData="kind='element' namespace='##targetNamespace'" |
| * @generated |
| */ |
| Address getAddress(); |
| |
| /** |
| * Sets the value of the '{@link lobj.Publisher#getAddress <em>Address</em>}' containment |
| * reference. <!-- begin-user-doc --> <!-- end-user-doc --> |
| * |
| * @param value |
| * the new value of the '<em>Address</em>' containment reference. |
| * @see #getAddress() |
| * @generated |
| */ |
| void setAddress(Address value); |
| |
| /** |
| * 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 lobj.LobjPackage#getPublisher_Id() |
| * @model unique="false" id="true" dataType="org.eclipse.emf.ecore.xml.type.ID" required="true" |
| * extendedMetaData="kind='attribute'" |
| * @generated |
| */ |
| String getId(); |
| |
| /** |
| * Sets the value of the '{@link lobj.Publisher#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); |
| |
| } // Publisher |