Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'eclipselink/org.eclipse.emf.teneo.orm/src/org/eclipse/emf/teneo/jpa/orm/EntityListeners.java')
-rwxr-xr-xeclipselink/org.eclipse.emf.teneo.orm/src/org/eclipse/emf/teneo/jpa/orm/EntityListeners.java58
1 files changed, 58 insertions, 0 deletions
diff --git a/eclipselink/org.eclipse.emf.teneo.orm/src/org/eclipse/emf/teneo/jpa/orm/EntityListeners.java b/eclipselink/org.eclipse.emf.teneo.orm/src/org/eclipse/emf/teneo/jpa/orm/EntityListeners.java
new file mode 100755
index 000000000..6efc2ee66
--- /dev/null
+++ b/eclipselink/org.eclipse.emf.teneo.orm/src/org/eclipse/emf/teneo/jpa/orm/EntityListeners.java
@@ -0,0 +1,58 @@
+/**
+ * <copyright>
+ * </copyright>
+ *
+ * $Id: EntityListeners.java,v 1.1 2009/03/15 23:45:00 mtaal Exp $
+ */
+package org.eclipse.emf.teneo.jpa.orm;
+
+import org.eclipse.emf.common.util.EList;
+
+import org.eclipse.emf.ecore.EObject;
+
+/**
+ * <!-- begin-user-doc -->
+ * A representation of the model object '<em><b>Entity Listeners</b></em>'.
+ * <!-- end-user-doc -->
+ *
+ * <!-- begin-model-doc -->
+ *
+ *
+ * @Target({TYPE}) @Retention(RUNTIME)
+ * public @interface EntityListeners {
+ * Class[] value();
+ * }
+ *
+ *
+ * <!-- end-model-doc -->
+ *
+ * <p>
+ * The following features are supported:
+ * <ul>
+ * <li>{@link org.eclipse.emf.teneo.jpa.orm.EntityListeners#getEntityListener <em>Entity Listener</em>}</li>
+ * </ul>
+ * </p>
+ *
+ * @see org.eclipse.emf.teneo.jpa.orm.OrmPackage#getEntityListeners()
+ * @model extendedMetaData="name='entity-listeners' kind='elementOnly'"
+ * @generated
+ */
+public interface EntityListeners extends EObject {
+ /**
+ * Returns the value of the '<em><b>Entity Listener</b></em>' containment reference list.
+ * The list contents are of type {@link org.eclipse.emf.teneo.jpa.orm.EntityListener}.
+ * <!-- begin-user-doc -->
+ * <p>
+ * If the meaning of the '<em>Entity Listener</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>Entity Listener</em>' containment reference list.
+ * @see org.eclipse.emf.teneo.jpa.orm.OrmPackage#getEntityListeners_EntityListener()
+ * @model containment="true"
+ * extendedMetaData="kind='element' name='entity-listener' namespace='##targetNamespace'"
+ * @generated
+ */
+ EList<EntityListener> getEntityListener();
+
+} // EntityListeners

Back to the top