/** * Copyright (c) 2013 Tasktop Technologies 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: * Tasktop Technologies - initial API and implementation */ package org.eclipse.mylyn.reviews.core.model; /** * <!-- begin-user-doc --> A representation of the model object '<em><b>Change</b></em>'. <!-- end-user-doc --> * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.mylyn.reviews.core.model.IChange#getId <em>Id</em>}</li> * <li>{@link org.eclipse.mylyn.reviews.core.model.IChange#getKey <em>Key</em>}</li> * <li>{@link org.eclipse.mylyn.reviews.core.model.IChange#getSubject <em>Subject</em>}</li> * <li>{@link org.eclipse.mylyn.reviews.core.model.IChange#getMessage <em>Message</em>}</li> * <li>{@link org.eclipse.mylyn.reviews.core.model.IChange#getOwner <em>Owner</em>}</li> * <li>{@link org.eclipse.mylyn.reviews.core.model.IChange#getState <em>State</em>}</li> * </ul> * </p> * * @generated */ public interface IChange extends IDated { /** * Returns the value of the '<em><b>Id</b></em>' attribute. <!-- begin-user-doc --> * <p> * If the meaning of the '<em>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>Id</em>' attribute. * @see #setId(String) * @generated */ String getId(); /** * Sets the value of the '{@link org.eclipse.mylyn.reviews.core.model.IChange#getId <em>Id</em>}' attribute. <!-- * begin-user-doc --> <!-- end-user-doc --> * * @param value * the new value of the '<em>Id</em>' attribute. * @see #getId() * @generated */ void setId(String value); /** * Returns the value of the '<em><b>Key</b></em>' attribute. <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Key</em>' attribute isn't clear, there really should be more of a description here... * </p> * <!-- end-user-doc --> * * @return the value of the '<em>Key</em>' attribute. * @see #setKey(String) * @generated */ String getKey(); /** * Sets the value of the '{@link org.eclipse.mylyn.reviews.core.model.IChange#getKey <em>Key</em>}' attribute. <!-- * begin-user-doc --> <!-- end-user-doc --> * * @param value * the new value of the '<em>Key</em>' attribute. * @see #getKey() * @generated */ void setKey(String value); /** * Returns the value of the '<em><b>Subject</b></em>' attribute. <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Subject</em>' attribute isn't clear, there really should be more of a description * here... * </p> * <!-- end-user-doc --> * * @return the value of the '<em>Subject</em>' attribute. * @see #setSubject(String) * @generated */ String getSubject(); /** * Sets the value of the '{@link org.eclipse.mylyn.reviews.core.model.IChange#getSubject <em>Subject</em>}' * attribute. <!-- begin-user-doc --> <!-- end-user-doc --> * * @param value * the new value of the '<em>Subject</em>' attribute. * @see #getSubject() * @generated */ void setSubject(String value); /** * Returns the value of the '<em><b>Message</b></em>' attribute. <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Message</em>' attribute isn't clear, there really should be more of a description * here... * </p> * <!-- end-user-doc --> * * @return the value of the '<em>Message</em>' attribute. * @see #setMessage(String) * @generated */ String getMessage(); /** * Sets the value of the '{@link org.eclipse.mylyn.reviews.core.model.IChange#getMessage <em>Message</em>}' * attribute. <!-- begin-user-doc --> <!-- end-user-doc --> * * @param value * the new value of the '<em>Message</em>' attribute. * @see #getMessage() * @generated */ void setMessage(String value); /** * Returns the value of the '<em><b>Owner</b></em>' reference. <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Owner</em>' reference isn't clear, there really should be more of a description * here... * </p> * <!-- end-user-doc --> * * @return the value of the '<em>Owner</em>' reference. * @see #setOwner(IUser) * @generated */ IUser getOwner(); /** * Sets the value of the '{@link org.eclipse.mylyn.reviews.core.model.IChange#getOwner <em>Owner</em>}' reference. * <!-- begin-user-doc --> <!-- end-user-doc --> * * @param value * the new value of the '<em>Owner</em>' reference. * @see #getOwner() * @generated */ void setOwner(IUser value); /** * Returns the value of the '<em><b>State</b></em>' attribute. The literals are from the enumeration * {@link org.eclipse.mylyn.reviews.core.model.ReviewStatus}. <!-- begin-user-doc --> * <p> * If the meaning of the '<em>State</em>' containment reference isn't clear, there really should be more of a * description here... * </p> * <!-- end-user-doc --> * * @return the value of the '<em>State</em>' attribute. * @see org.eclipse.mylyn.reviews.core.model.ReviewStatus * @see #setState(ReviewStatus) * @generated */ ReviewStatus getState(); /** * Sets the value of the '{@link org.eclipse.mylyn.reviews.core.model.IChange#getState <em>State</em>}' attribute. * <!-- begin-user-doc --> <!-- end-user-doc --> * * @param value * the new value of the '<em>State</em>' attribute. * @see org.eclipse.mylyn.reviews.core.model.ReviewStatus * @see #getState() * @generated */ void setState(ReviewStatus value); } // IChange