blob: bc1f919e024cbcbd858106b3f9218e8bcca85b4a [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;
import org.eclipse.emf.ecore.EObject;
import org.osgi.framework.Version;
/**
* <!-- begin-user-doc --> A representation of the model object ' <em><b>Version Info</b></em>'. <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.emf.emfstore.internal.server.model.VersionInfo#getEmfStoreVersionString
* <em>Emf Store Version String</em>}</li>
* </ul>
*
* @see org.eclipse.emf.emfstore.internal.server.model.ModelPackage#getVersionInfo()
* @model
* @generated
*/
public interface VersionInfo extends EObject {
/**
* Returns the value of the '<em><b>Emf Store Version String</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Emf Store Version String</em>' attribute isn't clear, there really should be more of a
* description here...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>Emf Store Version String</em>' attribute.
* @see #setEmfStoreVersionString(String)
* @see org.eclipse.emf.emfstore.internal.server.model.ModelPackage#getVersionInfo_EmfStoreVersionString()
* @model
* @generated
*/
String getEmfStoreVersionString();
/**
* Sets the value of the '{@link org.eclipse.emf.emfstore.internal.server.model.VersionInfo#getEmfStoreVersionString
* <em>Emf Store Version String</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @param value the new value of the '<em>Emf Store Version String</em>' attribute.
* @see #getEmfStoreVersionString()
* @generated
*/
void setEmfStoreVersionString(String value);
/**
* Returns the value of the '<em><b>Emf Store Version String</b></em>'
* attribute as a Version. <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @generated NOT
* @return the version of the emf store plugin.
*/
Version getEmfStoreVersion();
/**
* Sets the value of the '
* {@link org.eclipse.emf.emfstore.internal.server.model.VersionInfo#getEmfStoreVersionString
* <em>Emf Store Version String</em>}' attribute. <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated NOT
* @param emfStoreVersion
* the version of the emf store plugin
*/
void setEmfStoreVersion(Version emfStoreVersion);
} // VersionInfo