blob: acf75c837421eecbb66e248f715f1e38ca32f003 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2005 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.tests.dnd;
import org.eclipse.swt.graphics.Point;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.ui.internal.dnd.TestDropLocation;
public class DetachedDropTarget implements TestDropLocation {
/* (non-Javadoc)
* @see java.lang.Object#toString()
*/
public String toString() {
return "out of the window";
}
/* (non-Javadoc)
* @see org.eclipse.ui.internal.dnd.TestDropLocation#getLocation()
*/
public Point getLocation() {
return new Point(0,0);
}
public Shell[] getShells() {
return new Shell[0];
}
}