Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'deprecated/library (emf 2.3)/Library/src/org/eclipse/example/library/Library.java')
-rw-r--r--deprecated/library (emf 2.3)/Library/src/org/eclipse/example/library/Library.java93
1 files changed, 0 insertions, 93 deletions
diff --git a/deprecated/library (emf 2.3)/Library/src/org/eclipse/example/library/Library.java b/deprecated/library (emf 2.3)/Library/src/org/eclipse/example/library/Library.java
deleted file mode 100644
index b3f2655f1..000000000
--- a/deprecated/library (emf 2.3)/Library/src/org/eclipse/example/library/Library.java
+++ /dev/null
@@ -1,93 +0,0 @@
-/**
- * <copyright>
- * </copyright>
- *
- * $Id: Library.java,v 1.1 2008/04/01 07:29:07 mtaal Exp $
- */
-package org.eclipse.example.library;
-
-import org.eclipse.emf.common.util.EList;
-
-import org.eclipse.emf.ecore.EObject;
-
-/**
- * <!-- begin-user-doc -->
- * A representation of the model object '<em><b>Library</b></em>'.
- * <!-- end-user-doc -->
- *
- * <p>
- * The following features are supported:
- * <ul>
- * <li>{@link org.eclipse.example.library.Library#getName <em>Name</em>}</li>
- * <li>{@link org.eclipse.example.library.Library#getWriters <em>Writers</em>}</li>
- * <li>{@link org.eclipse.example.library.Library#getBooks <em>Books</em>}</li>
- * </ul>
- * </p>
- *
- * @see org.eclipse.example.library.LibraryPackage#getLibrary()
- * @model extendedMetaData="name='Library' kind='elementOnly'"
- * @generated
- */
-public interface Library extends EObject {
- /**
- * 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.example.library.LibraryPackage#getLibrary_Name()
- * @model dataType="org.eclipse.emf.ecore.xml.type.String" required="true"
- * extendedMetaData="kind='element' name='name'"
- * @generated
- */
- String getName();
-
- /**
- * Sets the value of the '{@link org.eclipse.example.library.Library#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>' containment reference list.
- * The list contents are of type {@link org.eclipse.example.library.Writer}.
- * <!-- begin-user-doc -->
- * <p>
- * If the meaning of the '<em>Writers</em>' containment 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>' containment reference list.
- * @see org.eclipse.example.library.LibraryPackage#getLibrary_Writers()
- * @model type="org.eclipse.example.library.Writer" containment="true"
- * extendedMetaData="kind='element' name='writers'"
- * @generated
- */
- EList getWriters();
-
- /**
- * Returns the value of the '<em><b>Books</b></em>' containment reference list.
- * The list contents are of type {@link org.eclipse.example.library.Book}.
- * <!-- begin-user-doc -->
- * <p>
- * If the meaning of the '<em>Books</em>' containment reference list isn't clear,
- * there really should be more of a description here...
- * </p>
- * <!-- end-user-doc -->
- * @return the value of the '<em>Books</em>' containment reference list.
- * @see org.eclipse.example.library.LibraryPackage#getLibrary_Books()
- * @model type="org.eclipse.example.library.Book" containment="true"
- * extendedMetaData="kind='element' name='books'"
- * @generated
- */
- EList getBooks();
-
-} // Library

Back to the top