blob: 05743cb7ec7d37fc41ab1650b99c7b365b5e4d0b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015 RCP Vision (http://www.rcp-vision.com) 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:
* Vincenzo Caselli - Initial contribution and API
*
*******************************************************************************/
package org.eclipse.swt.dnd;
public class DropTargetAdapter implements DropTargetListener {
public void dragEnter(DropTargetEvent event){}
public void dragLeave(DropTargetEvent event){}
public void dragOperationChanged(DropTargetEvent event){}
public void dragOver(DropTargetEvent event){}
public void drop(DropTargetEvent event){}
public void dropAccept(DropTargetEvent event){}
}