/** * Copyright (c) 2013 MEDEVIT <office@medevit.at>. * 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: * MEDEVIT <office@medevit.at> - initial API and implementation */ package ch.elexis.core.model; import ch.elexis.core.types.DocumentStatus; import java.util.Date; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>IHistory</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link ch.elexis.core.model.IHistory#getDate <em>Date</em>}</li> * <li>{@link ch.elexis.core.model.IHistory#getStatus <em>Status</em>}</li> * <li>{@link ch.elexis.core.model.IHistory#getDescription <em>Description</em>}</li> * </ul> * * @see ch.elexis.core.model.ModelPackage#getIHistory() * @model interface="true" abstract="true" * @generated */ public interface IHistory { /** * Returns the value of the '<em><b>Date</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>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>Date</em>' attribute. * @see #setDate(Date) * @see ch.elexis.core.model.ModelPackage#getIHistory_Date() * @model * @generated */ Date getDate(); /** * Sets the value of the '{@link ch.elexis.core.model.IHistory#getDate <em>Date</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Date</em>' attribute. * @see #getDate() * @generated */ void setDate(Date value); /** * Returns the value of the '<em><b>Status</b></em>' attribute. * The literals are from the enumeration {@link ch.elexis.core.types.DocumentStatus}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Status</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Status</em>' attribute. * @see ch.elexis.core.types.DocumentStatus * @see #setStatus(DocumentStatus) * @see ch.elexis.core.model.ModelPackage#getIHistory_Status() * @model * @generated */ DocumentStatus getStatus(); /** * Sets the value of the '{@link ch.elexis.core.model.IHistory#getStatus <em>Status</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Status</em>' attribute. * @see ch.elexis.core.types.DocumentStatus * @see #getStatus() * @generated */ void setStatus(DocumentStatus 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 ch.elexis.core.model.ModelPackage#getIHistory_Description() * @model * @generated */ String getDescription(); /** * Sets the value of the '{@link ch.elexis.core.model.IHistory#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); } // IHistory