blob: df738fe81bb2de5afc3ccf6aa1f754f255a5a102 [file] [log] [blame]
/**
* Copyright (c) 2016 CEA LIST.
*
* 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:
* Arnault Lapitre (CEA LIST) arnault.lapitre@cea.fr
* - Initial API and Implementation
*/
package org.eclipse.efm.core.workflow.common;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Workspace</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.efm.core.workflow.common.Workspace#getLocation <em>Location</em>}</li>
* <li>{@link org.eclipse.efm.core.workflow.common.Workspace#getProject <em>Project</em>}</li>
* </ul>
*
* @see org.eclipse.efm.core.workflow.common.CommonPackage#getWorkspace()
* @model
* @generated
*/
public interface Workspace extends EObject {
/**
* Returns the value of the '<em><b>Location</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Location</em>' containment reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Location</em>' containment reference.
* @see #setLocation(Location)
* @see org.eclipse.efm.core.workflow.common.CommonPackage#getWorkspace_Location()
* @model containment="true"
* @generated
*/
Location getLocation();
/**
* Sets the value of the '{@link org.eclipse.efm.core.workflow.common.Workspace#getLocation <em>Location</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Location</em>' containment reference.
* @see #getLocation()
* @generated
*/
void setLocation(Location value);
/**
* Returns the value of the '<em><b>Project</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Project</em>' containment reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Project</em>' containment reference.
* @see #setProject(Project)
* @see org.eclipse.efm.core.workflow.common.CommonPackage#getWorkspace_Project()
* @model containment="true"
* @generated
*/
Project getProject();
/**
* Sets the value of the '{@link org.eclipse.efm.core.workflow.common.Workspace#getProject <em>Project</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Project</em>' containment reference.
* @see #getProject()
* @generated
*/
void setProject(Project value);
} // Workspace