blob: a4fa32acdd6efee3ddcb48f276462d9022ed8fc0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2010 BMW Car IT, Technische Universitaet Muenchen, and others.
* 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:
* BMW Car IT - Initial API and implementation
* Technische Universitaet Muenchen - Major refactoring and extension
*******************************************************************************/
package org.eclipse.emf.edapt.spi.history;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Move</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* A change that moves an element to a target container. The containment reference to which the element will be moved will be derived from the source container.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.emf.edapt.spi.history.Move#getSource <em>Source</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.emf.edapt.spi.history.HistoryPackage#getMove()
* @model
* @generated
*/
public interface Move extends NonDelete {
/**
* Returns the value of the '<em><b>Source</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Source</em>' containment reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The source element from which the element is moved
* <!-- end-model-doc -->
* @return the value of the '<em>Source</em>' reference.
* @see #setSource(EObject)
* @see org.eclipse.emf.edapt.spi.history.HistoryPackage#getMove_Source()
* @model required="true"
* @generated
*/
EObject getSource();
/**
* Sets the value of the '{@link org.eclipse.emf.edapt.spi.history.Move#getSource <em>Source</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Source</em>' reference.
* @see #getSource()
* @generated
*/
void setSource(EObject value);
} // Move