blob: 25614d09ed112be75793466fe78b7a684ef00aad [file] [log] [blame]
/**
* Copyright (c) 2010, 2011 Obeo.
* 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:
* Obeo - initial API and implementation
*
*/
package org.eclipse.mylyn.docs.intent.retro;
import org.eclipse.emf.cdo.CDOObject;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Product</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.mylyn.docs.intent.retro.Product#getName <em>Name</em>}</li>
* <li>{@link org.eclipse.mylyn.docs.intent.retro.Product#getBundles <em>Bundles</em>}</li>
* <li>{@link org.eclipse.mylyn.docs.intent.retro.Product#getFeatures <em>Features</em>}</li>
* <li>{@link org.eclipse.mylyn.docs.intent.retro.Product#getCategories <em>Categories</em>}</li>
* <li>{@link org.eclipse.mylyn.docs.intent.retro.Product#getInteractions <em>Interactions</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.mylyn.docs.intent.retro.RetroPackage#getProduct()
* @model
* @extends CDOObject
* @generated
*/
public interface Product extends CDOObject {
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
String copyright = "Copyright (c) 2010, 2011 Obeo.\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\tObeo - initial API and implementation\r\n";
/**
* 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.mylyn.docs.intent.retro.RetroPackage#getProduct_Name()
* @model
* @generated
*/
String getName();
/**
* Sets the value of the '{@link org.eclipse.mylyn.docs.intent.retro.Product#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>Bundles</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.mylyn.docs.intent.retro.Bundle}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Bundles</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>Bundles</em>' containment reference list.
* @see org.eclipse.mylyn.docs.intent.retro.RetroPackage#getProduct_Bundles()
* @model containment="true"
* @generated
*/
EList<Bundle> getBundles();
/**
* Returns the value of the '<em><b>Features</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.mylyn.docs.intent.retro.Feature}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Features</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>Features</em>' containment reference list.
* @see org.eclipse.mylyn.docs.intent.retro.RetroPackage#getProduct_Features()
* @model containment="true"
* @generated
*/
EList<Feature> getFeatures();
/**
* Returns the value of the '<em><b>Categories</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.mylyn.docs.intent.retro.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.mylyn.docs.intent.retro.RetroPackage#getProduct_Categories()
* @model containment="true"
* @generated
*/
EList<Category> getCategories();
/**
* Returns the value of the '<em><b>Interactions</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.mylyn.docs.intent.retro.Interaction}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Interactions</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>Interactions</em>' containment reference list.
* @see org.eclipse.mylyn.docs.intent.retro.RetroPackage#getProduct_Interactions()
* @model containment="true"
* @generated
*/
EList<Interaction> getInteractions();
} // Product