Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'examples/org.eclipse.emf.teneo.samples/src/com/example/car/CarWheel.java')
-rw-r--r--examples/org.eclipse.emf.teneo.samples/src/com/example/car/CarWheel.java75
1 files changed, 0 insertions, 75 deletions
diff --git a/examples/org.eclipse.emf.teneo.samples/src/com/example/car/CarWheel.java b/examples/org.eclipse.emf.teneo.samples/src/com/example/car/CarWheel.java
deleted file mode 100644
index c5d192de4..000000000
--- a/examples/org.eclipse.emf.teneo.samples/src/com/example/car/CarWheel.java
+++ /dev/null
@@ -1,75 +0,0 @@
-/**
- * <copyright>
- * </copyright>
- *
- * $Id: CarWheel.java,v 1.1 2007/08/10 20:17:31 mtaal Exp $
- */
-package com.example.car;
-
-import org.eclipse.emf.common.util.EList;
-
-import org.eclipse.emf.ecore.EObject;
-
-/**
- * <!-- begin-user-doc -->
- * A representation of the model object '<em><b>Wheel</b></em>'.
- * <!-- end-user-doc -->
- *
- * <p>
- * The following features are supported:
- * <ul>
- * <li>{@link com.example.car.CarWheel#getCarTire <em>Car Tire</em>}</li>
- * <li>{@link com.example.car.CarWheel#getName <em>Name</em>}</li>
- * </ul>
- * </p>
- *
- * @see com.example.car.CarPackage#getCarWheel()
- * @model extendedMetaData="name='CarWheel' kind='elementOnly'"
- * @generated
- */
-public interface CarWheel extends EObject {
- /**
- * Returns the value of the '<em><b>Car Tire</b></em>' containment reference list.
- * The list contents are of type {@link com.example.car.CarTire}.
- * <!-- begin-user-doc -->
- * <p>
- * If the meaning of the '<em>Car Tire</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>Car Tire</em>' containment reference list.
- * @see com.example.car.CarPackage#getCarWheel_CarTire()
- * @model containment="true"
- * extendedMetaData="kind='element' name='carTire' namespace='##targetNamespace'"
- * @generated
- */
- EList<CarTire> getCarTire();
-
- /**
- * 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 com.example.car.CarPackage#getCarWheel_Name()
- * @model dataType="org.eclipse.emf.ecore.xml.type.String"
- * extendedMetaData="kind='attribute' name='name'"
- * @generated
- */
- String getName();
-
- /**
- * Sets the value of the '{@link com.example.car.CarWheel#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);
-
-} // CarWheel

Back to the top