blob: 5ddd9017d6ca9b48c8d6162c08e1a564e27a56c3 [file] [log] [blame]
/**
* Copyright (c) 2007, 2013 THALES GLOBAL SERVICES.
* 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:
* Obeo - initial API and implementation
*
*/
package org.eclipse.sirius.diagram;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.sirius.diagram.description.DragAndDropTargetDescription;
/**
* <!-- begin-user-doc --> A representation of the model object '
* <em><b>Drag And Drop Target</b></em>'. <!-- end-user-doc -->
*
* <!-- begin-model-doc --> A DragAndDropTarget is an element that can managed
* drop requests. <!-- end-model-doc -->
*
*
* @see org.eclipse.sirius.diagram.DiagramPackage#getDragAndDropTarget()
* @model
* @generated
*/
public interface DragAndDropTarget extends EObject {
/**
* <!-- begin-user-doc --> <!-- end-user-doc --> <!-- begin-model-doc -->
* Return the description of this Drag&Drop Target. <!-- end-model-doc -->
*
* @model kind="operation"
* @generated
*/
DragAndDropTargetDescription getDragAndDropDescription();
} // DragAndDropTarget