Fixed up javadocs.

git-svn-id: https://samskivert.googlecode.com/svn/trunk@1135 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
ray
2003-05-20 17:43:02 +00:00
parent f3327b480b
commit abef5bf16f
2 changed files with 6 additions and 3 deletions
@@ -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;
@@ -26,7 +26,9 @@ public interface DragSource
/**
* 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);
@@ -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;
@@ -14,6 +14,7 @@ public interface DropTarget
* Also indicates that a hover has started in case the drop target would
* 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
* {@link #noDrop} will be called next.
*/