blob: e830feb1f5a7015bf0ffebbf9e09d71ceca6d4f9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008-2011 Chair for Applied Software Engineering,
* Technische Universitaet Muenchen.
* 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:
******************************************************************************/
package org.eclipse.emf.emfstore.internal.server.model.versioning;
import java.util.Date;
import org.eclipse.emf.emfstore.internal.common.api.APIDelegate;
import org.eclipse.emf.emfstore.server.model.versionspec.ESDateVersionSpec;
/**
* <!-- begin-user-doc --> A representation of the model object ' <em><b>Date Version Spec</b></em>'.
*
* @extends APIDelegate<ESDateVersionSpec>
* <!-- end-user-doc
* -->
*
* <p>
* The following features are supported:
* <ul>
* <li>
* {@link org.eclipse.emf.emfstore.internal.server.model.versioning.DateVersionSpec#getDate
* <em>Date</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.emf.emfstore.internal.server.model.versioning.VersioningPackage#getDateVersionSpec()
* @model
* @generated
*/
public interface DateVersionSpec extends VersionSpec, APIDelegate<ESDateVersionSpec> {
/**
* 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.internal.server.model.versioning.VersioningPackage#getDateVersionSpec_Date()
* @model required="true"
* @generated
*/
Date getDate();
/**
* Sets the value of the '{@link org.eclipse.emf.emfstore.internal.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