< prev index next >
src/java.desktop/share/classes/java/awt/dnd/DropTargetEvent.java
Print this page
*** 27,56 ****
import java.util.EventObject;
import java.awt.dnd.DropTargetContext;
/**
! * The <code>DropTargetEvent</code> is the base
! * class for both the <code>DropTargetDragEvent</code>
! * and the <code>DropTargetDropEvent</code>.
* It encapsulates the current state of the Drag and
* Drop operations, in particular the current
! * <code>DropTargetContext</code>.
*
* @since 1.2
*
*/
public class DropTargetEvent extends java.util.EventObject {
private static final long serialVersionUID = 2821229066521922993L;
/**
! * Construct a <code>DropTargetEvent</code> object with
! * the specified <code>DropTargetContext</code>.
*
! * @param dtc The <code>DropTargetContext</code>
* @throws NullPointerException if {@code dtc} equals {@code null}.
* @see #getSource()
* @see #getDropTargetContext()
*/
--- 27,56 ----
import java.util.EventObject;
import java.awt.dnd.DropTargetContext;
/**
! * The {@code DropTargetEvent} is the base
! * class for both the {@code DropTargetDragEvent}
! * and the {@code DropTargetDropEvent}.
* It encapsulates the current state of the Drag and
* Drop operations, in particular the current
! * {@code DropTargetContext}.
*
* @since 1.2
*
*/
public class DropTargetEvent extends java.util.EventObject {
private static final long serialVersionUID = 2821229066521922993L;
/**
! * Construct a {@code DropTargetEvent} object with
! * the specified {@code DropTargetContext}.
*
! * @param dtc The {@code DropTargetContext}
* @throws NullPointerException if {@code dtc} equals {@code null}.
* @see #getSource()
* @see #getDropTargetContext()
*/
*** 59,81 ****
context = dtc;
}
/**
! * This method returns the <code>DropTargetContext</code>
! * associated with this <code>DropTargetEvent</code>.
*
! * @return the <code>DropTargetContext</code>
*/
public DropTargetContext getDropTargetContext() {
return context;
}
/**
! * The <code>DropTargetContext</code> associated with this
! * <code>DropTargetEvent</code>.
*
* @serial
*/
protected DropTargetContext context;
}
--- 59,81 ----
context = dtc;
}
/**
! * This method returns the {@code DropTargetContext}
! * associated with this {@code DropTargetEvent}.
*
! * @return the {@code DropTargetContext}
*/
public DropTargetContext getDropTargetContext() {
return context;
}
/**
! * The {@code DropTargetContext} associated with this
! * {@code DropTargetEvent}.
*
* @serial
*/
protected DropTargetContext context;
}
< prev index next >