blob: 341708472c04aac66555c724728611556913a01c [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>Delete</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* A change that deletes an element, all its contents and the cross references to them from the metamodel
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.emf.edapt.spi.history.Delete#getElement <em>Element</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.emf.edapt.spi.history.HistoryPackage#getDelete()
* @model annotation="http://www.eclipse.org/emf/2002/Ecore text=''"
* @generated
*/
public interface Delete extends InitializerChange {
/**
* Returns the value of the '<em><b>Element</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The element to be deleted
* <!-- end-model-doc -->
* @return the value of the '<em>Element</em>' containment reference.
* @see #setElement(EObject)
* @see org.eclipse.emf.edapt.spi.history.HistoryPackage#getDelete_Element()
* @model containment="true" required="true"
* @generated
*/
EObject getElement();
/**
* Sets the value of the '{@link org.eclipse.emf.edapt.spi.history.Delete#getElement <em>Element</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Element</em>' containment reference.
* @see #getElement()
* @generated
*/
void setElement(EObject value);
} // Delete