blob: d1f22b32f447b6188c09789d2ed5275cd981d86c [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 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* 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