Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'examples/org.eclipse.emf.teneo.samples/src/lobj/Publisher.java')
-rw-r--r--examples/org.eclipse.emf.teneo.samples/src/lobj/Publisher.java111
1 files changed, 0 insertions, 111 deletions
diff --git a/examples/org.eclipse.emf.teneo.samples/src/lobj/Publisher.java b/examples/org.eclipse.emf.teneo.samples/src/lobj/Publisher.java
deleted file mode 100644
index 8e76a4759..000000000
--- a/examples/org.eclipse.emf.teneo.samples/src/lobj/Publisher.java
+++ /dev/null
@@ -1,111 +0,0 @@
-/**
- * <copyright>
- * </copyright>
- *
- * $Id: Publisher.java,v 1.3 2007/03/28 13:56:49 mtaal Exp $
- */
-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

Back to the top