Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'examples/org.eclipse.emf.teneo.eclipselink.examples.library/src/org/eclipse/emf/teneo/eclipselink/examples/library/Publisher.java')
-rw-r--r--examples/org.eclipse.emf.teneo.eclipselink.examples.library/src/org/eclipse/emf/teneo/eclipselink/examples/library/Publisher.java74
1 files changed, 0 insertions, 74 deletions
diff --git a/examples/org.eclipse.emf.teneo.eclipselink.examples.library/src/org/eclipse/emf/teneo/eclipselink/examples/library/Publisher.java b/examples/org.eclipse.emf.teneo.eclipselink.examples.library/src/org/eclipse/emf/teneo/eclipselink/examples/library/Publisher.java
deleted file mode 100644
index 7e3456c22..000000000
--- a/examples/org.eclipse.emf.teneo.eclipselink.examples.library/src/org/eclipse/emf/teneo/eclipselink/examples/library/Publisher.java
+++ /dev/null
@@ -1,74 +0,0 @@
-/**
- * <copyright>
- * </copyright>
- *
- * $Id: Publisher.java,v 1.3 2009/03/18 11:16:52 mtaal Exp $
- */
-package org.eclipse.emf.teneo.eclipselink.examples.library;
-
-import org.eclipse.emf.common.util.EList;
-
-/**
- * <!-- 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 org.eclipse.emf.teneo.eclipselink.examples.library.Publisher#getName <em>Name</em>}</li>
- * <li>{@link org.eclipse.emf.teneo.eclipselink.examples.library.Publisher#getWriters <em>Writers</em>}</li>
- * </ul>
- * </p>
- *
- * @see org.eclipse.emf.teneo.eclipselink.examples.library.LibraryPackage#getPublisher()
- * @model
- * @generated
- */
-public interface Publisher extends Identifiable {
- /**
- * Returns the value of the '<em><b>Name</b></em>' attribute.
- * <!-- begin-user-doc -->
- * <p>
- * If the meaning of the '<em>Name</em>' attribute isn't clear,
- * there really should be more of a description here...
- * </p>
- * <!-- end-user-doc -->
- * @return the value of the '<em>Name</em>' attribute.
- * @see #setName(String)
- * @see org.eclipse.emf.teneo.eclipselink.examples.library.LibraryPackage#getPublisher_Name()
- * @model
- * @generated
- */
- String getName();
-
- /**
- * Sets the value of the '{@link org.eclipse.emf.teneo.eclipselink.examples.library.Publisher#getName <em>Name</em>}' attribute.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @param value the new value of the '<em>Name</em>' attribute.
- * @see #getName()
- * @generated
- */
- void setName(String value);
-
- /**
- * Returns the value of the '<em><b>Writers</b></em>' reference list.
- * The list contents are of type {@link org.eclipse.emf.teneo.eclipselink.examples.library.Writer}.
- * It is bidirectional and its opposite is '{@link org.eclipse.emf.teneo.eclipselink.examples.library.Writer#getPublishers <em>Publishers</em>}'.
- * <!-- begin-user-doc -->
- * <p>
- * If the meaning of the '<em>Writers</em>' reference list isn't clear,
- * there really should be more of a description here...
- * </p>
- * <!-- end-user-doc -->
- * @return the value of the '<em>Writers</em>' reference list.
- * @see org.eclipse.emf.teneo.eclipselink.examples.library.LibraryPackage#getPublisher_Writers()
- * @see org.eclipse.emf.teneo.eclipselink.examples.library.Writer#getPublishers
- * @model opposite="publishers"
- * annotation="teneo.jpa value='@JoinTable(name=\"EMFLIB_PUBLISHER_WRITERS\")'"
- * @generated
- */
- EList<Writer> getWriters();
-
-} // Publisher

Back to the top