blob: a603f36b3f3729e5837356c4a8d9239c679f9f02 [file] [log] [blame]
/**
* Copyright (c) 2013 Ericsson
*
* 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
*
* Description:
*
* Contributors:
* Miles Parker, Tasktop Technologies - Initial API and implementation
*
*/
package org.eclipse.mylyn.reviews.example.emftasks;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- 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.mylyn.reviews.example.emftasks.Category#getSummary <em>Summary</em>}</li>
* <li>{@link org.eclipse.mylyn.reviews.example.emftasks.Category#getDescription <em>Description</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.mylyn.reviews.example.emftasks.EmfTasksPackage#getCategory()
* @model
* @generated
*/
public interface Category extends EObject {
/**
* Returns the value of the '<em><b>Summary</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Summary</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Summary</em>' attribute.
* @see #setSummary(String)
* @see org.eclipse.mylyn.reviews.example.emftasks.EmfTasksPackage#getCategory_Summary()
* @model required="true"
* @generated
*/
String getSummary();
/**
* Sets the value of the '{@link org.eclipse.mylyn.reviews.example.emftasks.Category#getSummary <em>Summary</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Summary</em>' attribute.
* @see #getSummary()
* @generated
*/
void setSummary(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.mylyn.reviews.example.emftasks.EmfTasksPackage#getCategory_Description()
* @model
* @generated
*/
String getDescription();
/**
* Sets the value of the '{@link org.eclipse.mylyn.reviews.example.emftasks.Category#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);
} // Category