blob: ef713467e208f4cbabdad16d15318eccb3d54d9e [file] [log] [blame]
/**
* Copyright (c) 2010, 2012 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:
* Alvaro Sanchez-Leon - Initial API and implementation
*
*/
package org.eclipse.mylyn.reviews.r4e.core.model;
import java.util.Date;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc --> A representation of the model object '<em><b>R4E Review Phase Info</b></em>'. <!--
* end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.mylyn.reviews.r4e.core.model.R4EReviewPhaseInfo#getEndDate <em>End Date</em>}</li>
* <li>{@link org.eclipse.mylyn.reviews.r4e.core.model.R4EReviewPhaseInfo#getType <em>Type</em>}</li>
* <li>{@link org.eclipse.mylyn.reviews.r4e.core.model.R4EReviewPhaseInfo#getPhaseOwnerID <em>Phase Owner ID</em>}</li>
* <li>{@link org.eclipse.mylyn.reviews.r4e.core.model.R4EReviewPhaseInfo#getStartDate <em>Start Date</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.mylyn.reviews.r4e.core.model.RModelPackage#getR4EReviewPhaseInfo()
* @model
* @generated
*/
public interface R4EReviewPhaseInfo extends EObject {
/**
* Returns the value of the '<em><b>End Date</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>End Date</em>' attribute isn't clear, there really should be more of a description
* here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>End Date</em>' attribute.
* @see #setEndDate(Date)
* @see org.eclipse.mylyn.reviews.r4e.core.model.RModelPackage#getR4EReviewPhaseInfo_EndDate()
* @model
* @generated
*/
Date getEndDate();
/**
* Sets the value of the '{@link org.eclipse.mylyn.reviews.r4e.core.model.R4EReviewPhaseInfo#getEndDate <em>End Date</em>}' attribute.
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @param value the new value of the '<em>End Date</em>' attribute.
* @see #getEndDate()
* @generated
*/
void setEndDate(Date value);
/**
* Returns the value of the '<em><b>Type</b></em>' attribute.
* The literals are from the enumeration {@link org.eclipse.mylyn.reviews.r4e.core.model.R4EReviewPhase}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Type</em>' attribute isn't clear, there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Type</em>' attribute.
* @see org.eclipse.mylyn.reviews.r4e.core.model.R4EReviewPhase
* @see #setType(R4EReviewPhase)
* @see org.eclipse.mylyn.reviews.r4e.core.model.RModelPackage#getR4EReviewPhaseInfo_Type()
* @model
* @generated
*/
R4EReviewPhase getType();
/**
* Sets the value of the '{@link org.eclipse.mylyn.reviews.r4e.core.model.R4EReviewPhaseInfo#getType <em>Type</em>}' attribute.
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @param value the new value of the '<em>Type</em>' attribute.
* @see org.eclipse.mylyn.reviews.r4e.core.model.R4EReviewPhase
* @see #getType()
* @generated
*/
void setType(R4EReviewPhase value);
/**
* Returns the value of the '<em><b>Phase Owner ID</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Phase Owner ID</em>' attribute isn't clear, there really should be more of a
* description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Phase Owner ID</em>' attribute.
* @see #setPhaseOwnerID(String)
* @see org.eclipse.mylyn.reviews.r4e.core.model.RModelPackage#getR4EReviewPhaseInfo_PhaseOwnerID()
* @model
* @generated
*/
String getPhaseOwnerID();
/**
* Sets the value of the '{@link org.eclipse.mylyn.reviews.r4e.core.model.R4EReviewPhaseInfo#getPhaseOwnerID <em>Phase Owner ID</em>}' attribute.
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @param value the new value of the '<em>Phase Owner ID</em>' attribute.
* @see #getPhaseOwnerID()
* @generated
*/
void setPhaseOwnerID(String value);
/**
* Returns the value of the '<em><b>Start Date</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Start Date</em>' attribute isn't clear, there really should be more of a description
* here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Start Date</em>' attribute.
* @see #setStartDate(Date)
* @see org.eclipse.mylyn.reviews.r4e.core.model.RModelPackage#getR4EReviewPhaseInfo_StartDate()
* @model
* @generated
*/
Date getStartDate();
/**
* Sets the value of the '{@link org.eclipse.mylyn.reviews.r4e.core.model.R4EReviewPhaseInfo#getStartDate <em>Start Date</em>}' attribute.
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @param value the new value of the '<em>Start Date</em>' attribute.
* @see #getStartDate()
* @generated
*/
void setStartDate(Date value);
} // R4EReviewPhaseInfo