/** * Copyright (c) 2004 - 2009 Eike Stepper (Berlin, Germany) and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Eike Stepper - initial API and implementation */ package org.eclipse.emf.cdo.examples.company; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * A representation of the model object 'Category'. *

* The following features are supported: *

*

* * @see org.eclipse.emf.cdo.examples.company.CompanyPackage#getCategory() * @model * @generated */ public interface Category extends EObject { /** * * * @generated */ String copyright = "Copyright (c) 2004 - 2009 Eike Stepper (Berlin, Germany) and others.\r\nAll rights reserved. This program and the accompanying materials\r\nare made available under the terms of the Eclipse Public License v1.0\r\nwhich accompanies this distribution, and is available at\r\nhttp://www.eclipse.org/legal/epl-v10.html\r\n\r\nContributors:\r\n Eike Stepper - initial API and implementation"; /** * Returns the value of the 'Name' attribute. *

* If the meaning of the 'Name' attribute isn't clear, there really should be more of a description here... *

* * * @return the value of the 'Name' attribute. * @see #setName(String) * @see org.eclipse.emf.cdo.examples.company.CompanyPackage#getCategory_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link org.eclipse.emf.cdo.examples.company.Category#getName Name}' attribute. * * @param value * the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the 'Categories' containment reference list. The list contents are of type * {@link org.eclipse.emf.cdo.examples.company.Category}. *

* If the meaning of the 'Categories' containment reference list isn't clear, there really should be more of * a description here... *

* * * @return the value of the 'Categories' containment reference list. * @see org.eclipse.emf.cdo.examples.company.CompanyPackage#getCategory_Categories() * @model containment="true" * @generated */ EList getCategories(); /** * Returns the value of the 'Products' containment reference list. The list contents are of type * {@link org.eclipse.emf.cdo.examples.company.Product}. *

* If the meaning of the 'Products' containment reference list isn't clear, there really should be more of a * description here... *

* * * @return the value of the 'Products' containment reference list. * @see org.eclipse.emf.cdo.examples.company.CompanyPackage#getCategory_Products() * @model containment="true" * @generated */ EList getProducts(); } // Category