Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'examples/org.eclipse.emf.teneo.samples/src/org/eclipse/emf/teneo/samples/emf/sample/dynamic/Person.java')
-rw-r--r--examples/org.eclipse.emf.teneo.samples/src/org/eclipse/emf/teneo/samples/emf/sample/dynamic/Person.java113
1 files changed, 0 insertions, 113 deletions
diff --git a/examples/org.eclipse.emf.teneo.samples/src/org/eclipse/emf/teneo/samples/emf/sample/dynamic/Person.java b/examples/org.eclipse.emf.teneo.samples/src/org/eclipse/emf/teneo/samples/emf/sample/dynamic/Person.java
deleted file mode 100644
index 06bfc59ea..000000000
--- a/examples/org.eclipse.emf.teneo.samples/src/org/eclipse/emf/teneo/samples/emf/sample/dynamic/Person.java
+++ /dev/null
@@ -1,113 +0,0 @@
-/**
- * <copyright>
- * </copyright>
- *
- * $Id: Person.java,v 1.2 2007/02/08 23:09:20 mtaal Exp $
- */
-package org.eclipse.emf.teneo.samples.emf.sample.dynamic;
-
-import org.eclipse.emf.common.util.EList;
-
-import org.eclipse.emf.ecore.EObject;
-
-import org.eclipse.emf.ecore.util.FeatureMap;
-
-/**
- * <!-- begin-user-doc -->
- * A representation of the model object '<em><b>Person</b></em>'.
- * <!-- end-user-doc -->
- *
- * <p>
- * The following features are supported:
- * <ul>
- * <li>{@link org.eclipse.emf.teneo.samples.emf.sample.dynamic.Person#getName <em>Name</em>}</li>
- * <li>{@link org.eclipse.emf.teneo.samples.emf.sample.dynamic.Person#getGroup <em>Group</em>}</li>
- * <li>{@link org.eclipse.emf.teneo.samples.emf.sample.dynamic.Person#getAge <em>Age</em>}</li>
- * <li>{@link org.eclipse.emf.teneo.samples.emf.sample.dynamic.Person#getLength <em>Length</em>}</li>
- * </ul>
- * </p>
- *
- * @see org.eclipse.emf.teneo.samples.emf.sample.dynamic.DynamicPackage#getPerson()
- * @model extendedMetaData="name='Person' kind='elementOnly'"
- * @generated
- */
-public interface Person 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.emf.teneo.samples.emf.sample.dynamic.DynamicPackage#getPerson_Name()
- * @model unique="false" 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.emf.teneo.samples.emf.sample.dynamic.Person#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>Group</b></em>' attribute list.
- * The list contents are of type {@link org.eclipse.emf.ecore.util.FeatureMap.Entry}.
- * <!-- begin-user-doc -->
- * <p>
- * If the meaning of the '<em>Group</em>' attribute list isn't clear,
- * there really should be more of a description here...
- * </p>
- * <!-- end-user-doc -->
- * @return the value of the '<em>Group</em>' attribute list.
- * @see org.eclipse.emf.teneo.samples.emf.sample.dynamic.DynamicPackage#getPerson_Group()
- * @model unique="false" dataType="org.eclipse.emf.ecore.EFeatureMapEntry" many="true"
- * extendedMetaData="kind='group' name='group:1'"
- * @generated
- */
- FeatureMap getGroup();
-
- /**
- * Returns the value of the '<em><b>Age</b></em>' attribute list.
- * The list contents are of type {@link java.lang.Integer}.
- * <!-- begin-user-doc -->
- * <p>
- * If the meaning of the '<em>Age</em>' attribute list isn't clear,
- * there really should be more of a description here...
- * </p>
- * <!-- end-user-doc -->
- * @return the value of the '<em>Age</em>' attribute list.
- * @see org.eclipse.emf.teneo.samples.emf.sample.dynamic.DynamicPackage#getPerson_Age()
- * @model type="int" unique="false" dataType="org.eclipse.emf.ecore.xml.type.Int" transient="true" volatile="true" derived="true"
- * extendedMetaData="kind='element' name='age' group='#group:1'"
- * @generated
- */
- EList<Integer> getAge();
-
- /**
- * Returns the value of the '<em><b>Length</b></em>' attribute list.
- * The list contents are of type {@link java.lang.Integer}.
- * <!-- begin-user-doc -->
- * <p>
- * If the meaning of the '<em>Length</em>' attribute list isn't clear,
- * there really should be more of a description here...
- * </p>
- * <!-- end-user-doc -->
- * @return the value of the '<em>Length</em>' attribute list.
- * @see org.eclipse.emf.teneo.samples.emf.sample.dynamic.DynamicPackage#getPerson_Length()
- * @model type="int" unique="false" dataType="org.eclipse.emf.ecore.xml.type.Int" transient="true" volatile="true" derived="true"
- * extendedMetaData="kind='element' name='length' group='#group:1'"
- * @generated
- */
- EList<Integer> getLength();
-
-} // Person

Back to the top