Fixed up javadocs.
git-svn-id: https://samskivert.googlecode.com/svn/trunk@1135 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
//
|
//
|
||||||
// $Id: DragSource.java,v 1.2 2003/05/20 17:35:51 ray Exp $
|
// $Id: DragSource.java,v 1.3 2003/05/20 17:43:02 ray Exp $
|
||||||
|
|
||||||
package com.samskivert.swing.dnd;
|
package com.samskivert.swing.dnd;
|
||||||
|
|
||||||
@@ -26,7 +26,9 @@ public interface DragSource
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Is the drop target an acceptable one?
|
* Is the drop target an acceptable one?
|
||||||
* @param a potential DropTarget
|
* Called prior to calling the DropTarget's checkDrop.
|
||||||
|
*
|
||||||
|
* @param target a potential DropTarget.
|
||||||
*/
|
*/
|
||||||
public boolean checkDrop (DropTarget target);
|
public boolean checkDrop (DropTarget target);
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
//
|
//
|
||||||
// $Id: DropTarget.java,v 1.4 2002/08/21 17:54:10 mdb Exp $
|
// $Id: DropTarget.java,v 1.5 2003/05/20 17:43:02 ray Exp $
|
||||||
|
|
||||||
package com.samskivert.swing.dnd;
|
package com.samskivert.swing.dnd;
|
||||||
|
|
||||||
@@ -14,6 +14,7 @@ public interface DropTarget
|
|||||||
* Also indicates that a hover has started in case the drop target would
|
* Also indicates that a hover has started in case the drop target would
|
||||||
* like to create dragover feedback aside from the cursor feedback.
|
* like to create dragover feedback aside from the cursor feedback.
|
||||||
*
|
*
|
||||||
|
* Called after and only if the DragSource's checkDrop returned true.
|
||||||
* If this method returns true then either {@link #dropCompleted} or
|
* If this method returns true then either {@link #dropCompleted} or
|
||||||
* {@link #noDrop} will be called next.
|
* {@link #noDrop} will be called next.
|
||||||
*/
|
*/
|
||||||
|
|||||||
Reference in New Issue
Block a user