blob: c3586fe374db75307f855767de8d0025d0bc0e18 [file] [log] [blame]
/*******************************************************************************
* Copyright 2011 Chair for Applied Software Engineering,
* Technische Universitaet Muenchen.
* All rights reserved. This program and the accompanying materials
* are made available under the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
******************************************************************************/
package org.eclipse.emf.emfstore.server.model.versioning;
import java.util.Date;
/**
* <!-- begin-user-doc --> A representation of the model object '
* <em><b>Date Version Spec</b></em>'. <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>
* {@link org.eclipse.emf.emfstore.server.model.versioning.DateVersionSpec#getDate
* <em>Date</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.emf.emfstore.server.model.versioning.VersioningPackage#getDateVersionSpec()
* @model
* @generated
*/
public interface DateVersionSpec extends VersionSpec {
/**
* 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 org.eclipse.emf.emfstore.server.model.versioning.VersioningPackage#getDateVersionSpec_Date()
* @model required="true"
* @generated
*/
Date getDate();
/**
* Sets the value of the '
* {@link org.eclipse.emf.emfstore.server.model.versioning.DateVersionSpec#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);
} // DateVersionSpec