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/Address.java')
-rw-r--r--examples/org.eclipse.emf.teneo.eclipselink.examples.library/src/org/eclipse/emf/teneo/eclipselink/examples/library/Address.java53
1 files changed, 0 insertions, 53 deletions
diff --git a/examples/org.eclipse.emf.teneo.eclipselink.examples.library/src/org/eclipse/emf/teneo/eclipselink/examples/library/Address.java b/examples/org.eclipse.emf.teneo.eclipselink.examples.library/src/org/eclipse/emf/teneo/eclipselink/examples/library/Address.java
deleted file mode 100644
index 09868c605..000000000
--- a/examples/org.eclipse.emf.teneo.eclipselink.examples.library/src/org/eclipse/emf/teneo/eclipselink/examples/library/Address.java
+++ /dev/null
@@ -1,53 +0,0 @@
-/**
- * <copyright>
- * </copyright>
- *
- * $Id: Address.java,v 1.2 2009/01/21 21:34:20 seberle Exp $
- */
-package org.eclipse.emf.teneo.eclipselink.examples.library;
-
-
-/**
- * <!-- begin-user-doc -->
- * A representation of the model object '<em><b>Address</b></em>'.
- * <!-- end-user-doc -->
- *
- * <p>
- * The following features are supported:
- * <ul>
- * <li>{@link org.eclipse.emf.teneo.eclipselink.examples.library.Address#getTown <em>Town</em>}</li>
- * </ul>
- * </p>
- *
- * @see org.eclipse.emf.teneo.eclipselink.examples.library.LibraryPackage#getAddress()
- * @model annotation="http://www.oracle.com/toplink/emf/2006/ContainerMapping eContainingClassName='Writer' eContainingClassPackageName='library'"
- * @generated
- */
-public interface Address extends Identifiable {
- /**
- * Returns the value of the '<em><b>Town</b></em>' attribute.
- * <!-- begin-user-doc -->
- * <p>
- * If the meaning of the '<em>Town</em>' attribute isn't clear,
- * there really should be more of a description here...
- * </p>
- * <!-- end-user-doc -->
- * @return the value of the '<em>Town</em>' attribute.
- * @see #setTown(String)
- * @see org.eclipse.emf.teneo.eclipselink.examples.library.LibraryPackage#getAddress_Town()
- * @model
- * @generated
- */
- String getTown();
-
- /**
- * Sets the value of the '{@link org.eclipse.emf.teneo.eclipselink.examples.library.Address#getTown <em>Town</em>}' attribute.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @param value the new value of the '<em>Town</em>' attribute.
- * @see #getTown()
- * @generated
- */
- void setTown(String value);
-
-} // Address

Back to the top