|
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
java.lang.Object | +--java.awt.dnd.DropTarget
Unsafe:
| Field Summary | |
(package private) int |
actions
Default permissible actions supported by this DropTarget. |
(package private) boolean |
active
true if the DropTarget is accepting Drag & Drop operations. |
private java.awt.dnd.DropTarget.DropTargetAutoScroller |
autoScroller
|
private Component |
component
The Component associated with this DropTarget. |
private java.awt.peer.ComponentPeer |
componentPeer
|
private static FlavorMap |
defaultFlavorMap
|
private DropTargetContext |
dropTargetContext
The DropTargetContext associated with this DropTarget. |
private DropTargetListener |
dtListener
|
private FlavorMap |
flavorMap
|
private java.awt.peer.ComponentPeer |
nativePeer
|
private static long |
serialVersionUID
|
| Constructor Summary | |
DropTarget()
Enabled: Creates a DropTarget. |
|
DropTarget(Component c,
DropTargetListener dtl)
Enabled: Creates a DropTarget given the Component
to associate itself with, and the DropTargetListener
to handle event processing. |
|
DropTarget(Component c,
int ops,
DropTargetListener dtl)
Enabled: Creates a DropTarget given the Component
to associate itself with, an int representing
the default acceptable action(s) to support, and a
DropTargetListener to handle event processing. |
|
DropTarget(Component c,
int ops,
DropTargetListener dtl,
boolean act)
Enabled: Creates a DropTarget given the Component
to associate itself with, an int representing
the default acceptable action(s)
to support, a DropTargetListener
to handle event processing, and a boolean indicating
if the DropTarget is currently accepting drops. |
|
DropTarget(Component c,
int ops,
DropTargetListener dtl,
boolean act,
FlavorMap fm)
Enabled: Creates a new DropTarget given the Component
to associate itself with, an int representing
the default acceptable action(s) to
support, a DropTargetListener
to handle event processing, a boolean indicating
if the DropTarget is currently accepting drops, and
a FlavorMap to use (or null for the default FlavorMap). |
|
| Method Summary | |
void |
addDropTargetListener(DropTargetListener dtl)
Enabled: Adds a new DropTargetListener (UNICAST SOURCE). |
void |
addNotify(java.awt.peer.ComponentPeer peer)
Suppressed: Notify the DropTarget that it has been associated with a Component This method is usually called from java.awt.Component.addNotify() of the Component associated with this DropTarget to notify the DropTarget that a ComponentPeer has been associated with that Component. |
protected void |
clearAutoscroll()
clear autoscrolling |
protected java.awt.dnd.DropTarget.DropTargetAutoScroller |
createDropTargetAutoScroller(Component c,
Point p)
create an embedded autoscroller |
protected DropTargetContext |
createDropTargetContext()
Creates the DropTargetContext associated with this DropTarget. |
(package private) void |
doSetDefaultActions(int ops)
|
void |
dragEnter(DropTargetDragEvent dtde)
Enabled: The DropTarget intercepts
dragEnter() notifications before the
registered DropTargetListener gets them. |
void |
dragExit(DropTargetEvent dte)
Enabled: The DropTarget intercepts
dragExit() notifications before the
registered DropTargetListener gets them. |
void |
dragOver(DropTargetDragEvent dtde)
Enabled: The DropTarget
intercepts dragOver() notifications before the
registered DropTargetListener gets them. |
void |
drop(DropTargetDropEvent dtde)
Enabled: The DropTarget intercepts drop() notifications before the
registered DropTargetListener gets them. |
void |
dropActionChanged(DropTargetDragEvent dtde)
Enabled: The DropTarget intercepts
dropActionChanged() notifications before the
registered DropTargetListener gets them. |
Component |
getComponent()
Suppressed: Gets the Component associated
with this DropTarget. |
int |
getDefaultActions()
Enabled: Gets an int representing the
current action(s) supported by this DropTarget. |
DropTargetContext |
getDropTargetContext()
Enabled: Gets the DropTargetContext associated
with this DropTarget. |
FlavorMap |
getFlavorMap()
Enabled: Gets the FlavorMap
associated with this DropTarget. |
protected void |
initializeAutoscrolling(Point p)
initialize autoscrolling |
boolean |
isActive()
Enabled: Reports whether or not this DropTarget
is currently active (ready to accept drops). |
private void |
readObject(ObjectInputStream s)
Deserializes this DropTarget. |
void |
removeDropTargetListener(DropTargetListener dtl)
Enabled: Removes the current DropTargetListener (UNICAST SOURCE). |
void |
removeNotify(java.awt.peer.ComponentPeer peer)
Suppressed: Notify the DropTarget that it has been disassociated from a Component This method is usually called from java.awt.Component.removeNotify() of the Component associated with this DropTarget to notify the DropTarget that a ComponentPeer has been disassociated with that Component. |
void |
setActive(boolean isActive)
Enabled: Sets the DropTarget active if true,
inactive if false. |
void |
setComponent(Component c)
Enabled: Note: this interface is required to permit the safe association of a DropTarget with a Component in one of two ways, either: component.setDropTarget(droptarget);
or droptarget.setComponent(component);
|
void |
setDefaultActions(int ops)
Enabled: Sets the default acceptable actions for this DropTarget
|
void |
setFlavorMap(FlavorMap fm)
Enabled: Sets the FlavorMap associated
with this DropTarget. |
protected void |
updateAutoscroll(Point dragCursorLocn)
update autoscrolling with current cursor locn |
private void |
writeObject(ObjectOutputStream s)
Serializes this DropTarget. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
private static final long serialVersionUID
private static final FlavorMap defaultFlavorMap
private DropTargetContext dropTargetContext
private Component component
private transient java.awt.peer.ComponentPeer componentPeer
private transient java.awt.peer.ComponentPeer nativePeer
int actions
setDefaultActions(int),
getDefaultActions()boolean active
true if the DropTarget is accepting Drag & Drop operations.
private transient java.awt.dnd.DropTarget.DropTargetAutoScroller autoScroller
private transient DropTargetListener dtListener
private transient FlavorMap flavorMap
| Constructor Detail |
public DropTarget(Component c,
int ops,
DropTargetListener dtl,
boolean act,
FlavorMap fm)
throws HeadlessException
Component
to associate itself with, an int representing
the default acceptable action(s) to
support, a DropTargetListener
to handle event processing, a boolean indicating
if the DropTarget is currently accepting drops, and
a FlavorMap to use (or null for the default FlavorMap).
The Component will receive drops only if it is enabled.
c - The Component with which this DropTarget is associatedops - The default acceptable actions for this DropTargetdtl - The DropTargetListener for this DropTargetact - Is the DropTarget accepting drops.fm - The FlavorMap to use, or null for the default FlavorMapjava.awt.GraphicsEnvironment#isHeadless
public DropTarget(Component c,
int ops,
DropTargetListener dtl,
boolean act)
throws HeadlessException
DropTarget given the Component
to associate itself with, an int representing
the default acceptable action(s)
to support, a DropTargetListener
to handle event processing, and a boolean indicating
if the DropTarget is currently accepting drops.
The Component will receive drops only if it is enabled.
c - The Component with which this DropTarget is associatedops - The default acceptable actions for this DropTargetdtl - The DropTargetListener for this DropTargetact - Is the DropTarget accepting drops.java.awt.GraphicsEnvironment#isHeadless
public DropTarget()
throws HeadlessException
DropTarget.
java.awt.GraphicsEnvironment#isHeadless
public DropTarget(Component c,
DropTargetListener dtl)
throws HeadlessException
DropTarget given the Component
to associate itself with, and the DropTargetListener
to handle event processing.
The Component will receive drops only if it is enabled.
c - The Component with which this DropTarget is associateddtl - The DropTargetListener for this DropTargetjava.awt.GraphicsEnvironment#isHeadless
public DropTarget(Component c,
int ops,
DropTargetListener dtl)
throws HeadlessException
DropTarget given the Component
to associate itself with, an int representing
the default acceptable action(s) to support, and a
DropTargetListener to handle event processing.
The Component will receive drops only if it is enabled.
c - The Component with which this DropTarget is associatedops - The default acceptable actions for this DropTargetdtl - The DropTargetListener for this DropTargetjava.awt.GraphicsEnvironment#isHeadless| Method Detail |
public void setComponent(Component c)
component.setDropTarget(droptarget);
or droptarget.setComponent(component);
The Component will receive drops only if it is enabled.
c - The new Component this DropTarget
is to be associated with.public Component getComponent()
Component associated
with this DropTarget.
public void setDefaultActions(int ops)
DropTarget
ops - the default actions
java.awt.dnd.DnDConstantsvoid doSetDefaultActions(int ops)
public int getDefaultActions()
int representing the
current action(s) supported by this DropTarget.
public void setActive(boolean isActive)
true,
inactive if false.
isActive - sets the DropTarget (in)active.public boolean isActive()
DropTarget
is currently active (ready to accept drops).
true if active, false if not
public void addDropTargetListener(DropTargetListener dtl)
throws TooManyListenersException
DropTargetListener (UNICAST SOURCE).
dtl - The new DropTargetListener
TooManyListenersException - if a
DropTargetListener is already added to this
DropTarget.
TooManyListenersExceptionpublic void removeDropTargetListener(DropTargetListener dtl)
DropTargetListener (UNICAST SOURCE).
dtl - the DropTargetListener to deregister.public void dragEnter(DropTargetDragEvent dtde)
DropTarget intercepts
dragEnter() notifications before the
registered DropTargetListener gets them.
dragEnter in interface DropTargetListenerdtde - the DropTargetDragEventpublic void dragOver(DropTargetDragEvent dtde)
DropTarget
intercepts dragOver() notifications before the
registered DropTargetListener gets them.
dragOver in interface DropTargetListenerdtde - the DropTargetDragEventpublic void dropActionChanged(DropTargetDragEvent dtde)
DropTarget intercepts
dropActionChanged() notifications before the
registered DropTargetListener gets them.
dropActionChanged in interface DropTargetListenerdtde - the DropTargetDragEventpublic void dragExit(DropTargetEvent dte)
DropTarget intercepts
dragExit() notifications before the
registered DropTargetListener gets them.
dragExit in interface DropTargetListenerdte - the DropTargetEventpublic void drop(DropTargetDropEvent dtde)
DropTarget intercepts drop() notifications before the
registered DropTargetListener gets them.
drop in interface DropTargetListenerdtde - the DropTargetDropEventpublic FlavorMap getFlavorMap()
FlavorMap
associated with this DropTarget.
If no FlavorMap has been set for this
DropTarget, it is associated with the default
FlavorMap.
public void setFlavorMap(FlavorMap fm)
FlavorMap associated
with this DropTarget.
fm - the new FlavorMap, or null to
associate the default FlavorMap with this DropTarget.public void addNotify(java.awt.peer.ComponentPeer peer)
peer - The Peer of the Component we are associated with!public void removeNotify(java.awt.peer.ComponentPeer peer)
peer - The Peer of the Component we are being disassociated from!public DropTargetContext getDropTargetContext()
DropTargetContext associated
with this DropTarget.
DropTargetContext associated with this DropTarget.protected DropTargetContext createDropTargetContext()
private void writeObject(ObjectOutputStream s)
throws IOException
DropTarget. Performs default serialization,
and then writes out this object's DropTargetListener if and
only if it can be serialized. If not, null is written
instead.
IOException
private void readObject(ObjectInputStream s)
throws ClassNotFoundException,
IOException
DropTarget. This method first performs
default deserialization for all non-transient fields. An
attempt is then made to deserialize this object's
DropTargetListener as well. This is first attempted by
deserializing the field dtListener, because, in releases
prior to 1.4, a non-transient field of this name stored the
DropTargetListener. If this fails, the next object in the
stream is used instead.
ClassNotFoundException
IOException
protected java.awt.dnd.DropTarget.DropTargetAutoScroller createDropTargetAutoScroller(Component c,
Point p)
c - the Componentp - the Pointprotected void initializeAutoscrolling(Point p)
p - the Pointprotected void updateAutoscroll(Point dragCursorLocn)
dragCursorLocn - the Pointprotected void clearAutoscroll()
|
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||