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/catalog/CatalogType.java')
-rw-r--r--examples/org.eclipse.emf.teneo.samples/src/org/eclipse/emf/teneo/samples/emf/sample/catalog/CatalogType.java124
1 files changed, 0 insertions, 124 deletions
diff --git a/examples/org.eclipse.emf.teneo.samples/src/org/eclipse/emf/teneo/samples/emf/sample/catalog/CatalogType.java b/examples/org.eclipse.emf.teneo.samples/src/org/eclipse/emf/teneo/samples/emf/sample/catalog/CatalogType.java
deleted file mode 100644
index 8c2ff9ca5..000000000
--- a/examples/org.eclipse.emf.teneo.samples/src/org/eclipse/emf/teneo/samples/emf/sample/catalog/CatalogType.java
+++ /dev/null
@@ -1,124 +0,0 @@
-/**
- * <copyright>
- * </copyright>
- *
- * $Id: CatalogType.java,v 1.3 2007/07/17 13:58:47 mtaal Exp $
- */
-package org.eclipse.emf.teneo.samples.emf.sample.catalog;
-
-import org.eclipse.emf.common.util.EList;
-
-import org.eclipse.emf.ecore.EObject;
-
-/**
- * <!-- begin-user-doc -->
- * A representation of the model object '<em><b>Type</b></em>'.
- * <!-- end-user-doc -->
- *
- * <p>
- * The following features are supported:
- * <ul>
- * <li>{@link org.eclipse.emf.teneo.samples.emf.sample.catalog.CatalogType#getName <em>Name</em>}</li>
- * <li>{@link org.eclipse.emf.teneo.samples.emf.sample.catalog.CatalogType#getDescription <em>Description</em>}</li>
- * <li>{@link org.eclipse.emf.teneo.samples.emf.sample.catalog.CatalogType#getSubCatalog <em>Sub Catalog</em>}</li>
- * <li>{@link org.eclipse.emf.teneo.samples.emf.sample.catalog.CatalogType#getProduct <em>Product</em>}</li>
- * </ul>
- * </p>
- *
- * @see org.eclipse.emf.teneo.samples.emf.sample.catalog.CatalogPackage#getCatalogType()
- * @model extendedMetaData="name='CatalogType' kind='elementOnly'"
- * @generated
- */
-public interface CatalogType 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.catalog.CatalogPackage#getCatalogType_Name()
- * @model id="true" dataType="org.eclipse.emf.ecore.xml.type.ID" required="true"
- * extendedMetaData="kind='element' name='Name'"
- * @generated
- */
- String getName();
-
- /**
- * Sets the value of the '{@link org.eclipse.emf.teneo.samples.emf.sample.catalog.CatalogType#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>Description</b></em>' attribute.
- * <!-- begin-user-doc -->
- * <p>
- * If the meaning of the '<em>Description</em>' attribute isn't clear,
- * there really should be more of a description here...
- * </p>
- * <!-- end-user-doc -->
- * @return the value of the '<em>Description</em>' attribute.
- * @see #setDescription(String)
- * @see org.eclipse.emf.teneo.samples.emf.sample.catalog.CatalogPackage#getCatalogType_Description()
- * @model dataType="org.eclipse.emf.ecore.xml.type.String" required="true"
- * extendedMetaData="kind='element' name='Description'"
- * @generated
- */
- String getDescription();
-
- /**
- * Sets the value of the '{@link org.eclipse.emf.teneo.samples.emf.sample.catalog.CatalogType#getDescription <em>Description</em>}' attribute.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @param value the new value of the '<em>Description</em>' attribute.
- * @see #getDescription()
- * @generated
- */
- void setDescription(String value);
-
- /**
- * Returns the value of the '<em><b>Sub Catalog</b></em>' reference list.
- * The list contents are of type {@link org.eclipse.emf.teneo.samples.emf.sample.catalog.CatalogType}.
- * <!-- begin-user-doc -->
- * <p>
- * If the meaning of the '<em>Sub Catalog</em>' reference list isn't clear,
- * there really should be more of a description here...
- * </p>
- * <!-- end-user-doc -->
- * @return the value of the '<em>Sub Catalog</em>' reference list.
- * @see org.eclipse.emf.teneo.samples.emf.sample.catalog.CatalogPackage#getCatalogType_SubCatalog()
- * @model resolveProxies="false"
- * extendedMetaData="kind='element' name='SubCatalog'"
- * @generated
- */
- EList<CatalogType> getSubCatalog();
-
- /**
- * Returns the value of the '<em><b>Product</b></em>' reference list.
- * The list contents are of type {@link org.eclipse.emf.teneo.samples.emf.sample.catalog.ProductType}.
- * <!-- begin-user-doc -->
- * <p>
- * If the meaning of the '<em>Product</em>' reference list isn't clear,
- * there really should be more of a description here...
- * </p>
- * <!-- end-user-doc -->
- * <!-- begin-model-doc -->
- * My product documentation
- * <!-- end-model-doc -->
- * @return the value of the '<em>Product</em>' reference list.
- * @see org.eclipse.emf.teneo.samples.emf.sample.catalog.CatalogPackage#getCatalogType_Product()
- * @model resolveProxies="false"
- * extendedMetaData="kind='element' name='Product'"
- * @generated
- */
- EList<ProductType> getProduct();
-
-} // CatalogType

Back to the top