blob: 11f93b9de43a136fad2a97ea712af5812c316578 [file] [log] [blame]
/**
*/
package org.eclipse.emf.parsley.examples.cdo.company;
import org.eclipse.emf.cdo.CDOObject;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Category</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.emf.parsley.examples.cdo.company.Category#getName <em>Name</em>}</li>
* <li>{@link org.eclipse.emf.parsley.examples.cdo.company.Category#getCategories <em>Categories</em>}</li>
* <li>{@link org.eclipse.emf.parsley.examples.cdo.company.Category#getProducts <em>Products</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.emf.parsley.examples.cdo.company.CompanyPackage#getCategory()
* @model
* @extends CDOObject
* @generated
*/
public interface Category extends CDOObject {
/**
* 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.parsley.examples.cdo.company.CompanyPackage#getCategory_Name()
* @model annotation="teneo.jpa value='@Id @GeneratedValue(generator=\"system-uuid\")'"
* @generated
*/
String getName();
/**
* Sets the value of the '{@link org.eclipse.emf.parsley.examples.cdo.company.Category#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>Categories</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.emf.parsley.examples.cdo.company.Category}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Categories</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>Categories</em>' containment reference list.
* @see org.eclipse.emf.parsley.examples.cdo.company.CompanyPackage#getCategory_Categories()
* @model containment="true"
* @generated
*/
EList<Category> getCategories();
/**
* Returns the value of the '<em><b>Products</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.emf.parsley.examples.cdo.company.Product}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Products</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>Products</em>' containment reference list.
* @see org.eclipse.emf.parsley.examples.cdo.company.CompanyPackage#getCategory_Products()
* @model containment="true"
* @generated
*/
EList<Product> getProducts();
} // Category