/** * ***************************************************************************** * Copyright (c) 2014 BestSolution.at 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: * Tom Schindl <tom.schindl@bestsolution.at> - initial API and implementation * ******************************************************************************* */ package at.bestsolution.persistence.tasktracker; import java.util.Date; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Version</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link at.bestsolution.persistence.tasktracker.Version#getValue <em>Value</em>}</li> * <li>{@link at.bestsolution.persistence.tasktracker.Version#getDate <em>Date</em>}</li> * <li>{@link at.bestsolution.persistence.tasktracker.Version#getCodename <em>Codename</em>}</li> * <li>{@link at.bestsolution.persistence.tasktracker.Version#getRepository <em>Repository</em>}</li> * </ul> * </p> * * @see at.bestsolution.persistence.tasktracker.TasktrackerPackage#getVersion() * @model * @generated */ public interface Version extends BaseObject { /** * Returns the value of the '<em><b>Value</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Value</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Value</em>' attribute. * @see #setValue(String) * @see at.bestsolution.persistence.tasktracker.TasktrackerPackage#getVersion_Value() * @model * @generated */ String getValue(); /** * Sets the value of the '{@link at.bestsolution.persistence.tasktracker.Version#getValue <em>Value</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Value</em>' attribute. * @see #getValue() * @generated */ void setValue(String value); /** * 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 at.bestsolution.persistence.tasktracker.TasktrackerPackage#getVersion_Date() * @model * @generated */ Date getDate(); /** * Sets the value of the '{@link at.bestsolution.persistence.tasktracker.Version#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>Codename</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Codename</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Codename</em>' attribute. * @see #setCodename(String) * @see at.bestsolution.persistence.tasktracker.TasktrackerPackage#getVersion_Codename() * @model * @generated */ String getCodename(); /** * Sets the value of the '{@link at.bestsolution.persistence.tasktracker.Version#getCodename <em>Codename</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Codename</em>' attribute. * @see #getCodename() * @generated */ void setCodename(String value); /** * Returns the value of the '<em><b>Repository</b></em>' container reference. * It is bidirectional and its opposite is '{@link at.bestsolution.persistence.tasktracker.TaskRepository#getVersionList <em>Version List</em>}'. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Repository</em>' container reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Repository</em>' container reference. * @see #setRepository(TaskRepository) * @see at.bestsolution.persistence.tasktracker.TasktrackerPackage#getVersion_Repository() * @see at.bestsolution.persistence.tasktracker.TaskRepository#getVersionList * @model opposite="versionList" transient="false" * @generated */ TaskRepository getRepository(); /** * Sets the value of the '{@link at.bestsolution.persistence.tasktracker.Version#getRepository <em>Repository</em>}' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Repository</em>' container reference. * @see #getRepository() * @generated */ void setRepository(TaskRepository value); } // Version