dnd.js 1.2 KB

12345678910111213141516
  1. export const DragGestureEvent = $.type("java.awt.dnd.DragGestureEvent");
  2. export const DragGestureListener = $.type("java.awt.dnd.DragGestureListener");
  3. export const DragGestureRecognizer = $.type("java.awt.dnd.DragGestureRecognizer");
  4. export const DragSource = $.type("java.awt.dnd.DragSource");
  5. export const DragSourceContext = $.type("java.awt.dnd.DragSourceContext");
  6. export const DragSourceDragEvent = $.type("java.awt.dnd.DragSourceDragEvent");
  7. export const DragSourceDropEvent = $.type("java.awt.dnd.DragSourceDropEvent");
  8. export const DragSourceEvent = $.type("java.awt.dnd.DragSourceEvent");
  9. export const DragSourceListener = $.type("java.awt.dnd.DragSourceListener");
  10. export const DragSourceMotionListener = $.type("java.awt.dnd.DragSourceMotionListener");
  11. export const DropTarget = $.type("java.awt.dnd.DropTarget");
  12. export const DropTargetContext = $.type("java.awt.dnd.DropTargetContext");
  13. export const DropTargetDragEvent = $.type("java.awt.dnd.DropTargetDragEvent");
  14. export const DropTargetDropEvent = $.type("java.awt.dnd.DropTargetDropEvent");
  15. export const DropTargetEvent = $.type("java.awt.dnd.DropTargetEvent");
  16. export const DropTargetListener = $.type("java.awt.dnd.DropTargetListener");