/** * Copyright (c) 2011, 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; import java.util.Date; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> A representation of the model object '<em><b>Dated</b></em>'. <!-- end-user-doc --> * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.mylyn.reviews.core.model.IDated#getCreationDate <em>Creation Date</em>}</li> * <li>{@link org.eclipse.mylyn.reviews.core.model.IDated#getModificationDate <em>Modification Date</em>}</li> * </ul> * </p> * * @generated */ public interface IDated extends EObject { /** * Returns the value of the '<em><b>Creation Date</b></em>' attribute. <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Creation 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>Creation Date</em>' attribute. * @see #setCreationDate(Date) * @generated */ Date getCreationDate(); /** * Sets the value of the '{@link org.eclipse.mylyn.reviews.core.model.IDated#getCreationDate <em>Creation Date</em>} * ' attribute. <!-- begin-user-doc --> <!-- end-user-doc --> * * @param value * the new value of the '<em>Creation Date</em>' attribute. * @see #getCreationDate() * @generated */ void setCreationDate(Date value); /** * Returns the value of the '<em><b>Modification Date</b></em>' attribute. <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Modification 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>Modification Date</em>' attribute. * @see #setModificationDate(Date) * @generated */ Date getModificationDate(); /** * Sets the value of the '{@link org.eclipse.mylyn.reviews.core.model.IDated#getModificationDate * <em>Modification Date</em>}' attribute. <!-- begin-user-doc --> <!-- end-user-doc --> * * @param value * the new value of the '<em>Modification Date</em>' attribute. * @see #getModificationDate() * @generated */ void setModificationDate(Date value); } // IDated