blob: 00006275bba179151f611c9da3988bd44a215ae5 [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>Non Delete</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* Base class for content changes that do not delete an element
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.emf.edapt.spi.history.NonDelete#getElement <em>Element</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.emf.edapt.spi.history.HistoryPackage#getNonDelete()
* @model abstract="true"
* @generated
*/
public interface NonDelete extends ContentChange {
/**
* Returns the value of the '<em><b>Element</b></em>' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The element to be moved
* <!-- end-model-doc -->
*
* @return the value of the '<em>Element</em>' reference.
* @see #setElement(EObject)
* @see org.eclipse.emf.edapt.spi.history.HistoryPackage#getNonDelete_Element()
* @model required="true"
* @generated
*/
EObject getElement();
/**
* Sets the value of the '{@link org.eclipse.emf.edapt.spi.history.NonDelete#getElement <em>Element</em>}'
* reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @param value the new value of the '<em>Element</em>' reference.
* @see #getElement()
* @generated
*/
void setElement(EObject value);
} // NonDelete