Chapter 13. The java.awt.dnd.peer PackageThe interfaces of the java.awt.dnd.peer package precisely specify the native drag-and-drop capabilities that are required to implement the java.awt.dnd package. Application-level code never needs to use this package. Figure 13-1 shows the class hierarchy of this package. Figure 13-1. The java.awt.dnd.peer package
This interface defines methods that the java.awt.dnd.DragSourceContext class uses to communicate with the underlying native drag-and-drop subsystem. Application-level code never uses this interface.
Passed To: DragSource.createDragSourceContext(), DragSourceContext.DragSourceContext() Returned By: Toolkit.createDragSourceContextPeer()
This interface defines methods that the java.awt.dnd.DropTargetContext class uses to communicate with the underlying native drag-and-drop subsystem. Application-level code never uses this interface.
Passed To: DropTargetContext.addNotify()
This interface defines methods that the java.awt.dnd.DropTarget class uses to communicate with the underlying native drag-and-drop subsystem. Application-level code never uses this interface.
Copyright © 2001 O'Reilly & Associates. All rights reserved. |
|