blob: b286315ce0b861e617c61a20725be31e96d50ad8 [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.server.model.versioning;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc --> A representation of the model object ' <em><b>Version Spec</b></em>'. <!-- end-user-doc -->
*
*
* @see org.eclipse.emf.emfstore.server.model.versioning.VersioningPackage#getVersionSpec()
* @model interface="true" abstract="true"
* @generated
*/
public interface VersionSpec extends EObject {
VersionSpec HEAD_VERSION = VersioningFactory.eINSTANCE.createHeadVersionSpec();
String HEAD = "HEAD";
String BASE = "BASE";
} // VersionSpec