00001 package edu.ksu.cis.bandera.pdgslicer.dependency;
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 import java.awt.*;
00016 import java.awt.dnd.*;
00017 import java.awt.datatransfer.*;
00018
00019 import java.util.Hashtable;
00020 import java.util.List;
00021 import java.util.Iterator;
00022
00023 import java.io.*;
00024 import java.io.IOException;
00025
00026 import javax.swing.JList;
00027 import javax.swing.DefaultListModel;
00028
00029
00030
00031
00032 public abstract class DraggableList extends JList
00033 implements DragSourceListener, DragGestureListener {
00034
00035
00036
00037
00038
00039 DragSource dragSource = null;
00040
00041 static Transferable currentDraggingListNode = null;
00042
00043
00044
00045
00046 public DraggableList() {
00047 dragSource = new DragSource();
00048 setModel(new DefaultListModel());
00049 dragSource.createDefaultDragGestureRecognizer(this, DnDConstants.ACTION_COPY_OR_MOVE, this);
00050 }
00051
00052
00053
00054
00055
00056
00057 public void dragDropEnd (DragSourceDropEvent event) {
00058
00059
00060
00061
00062
00063 currentDraggingListNode = null;
00064 }
00065
00066
00067
00068
00069
00070
00071 public void dragEnter (DragSourceDragEvent event) {
00072
00073 }
00074
00075
00076
00077
00078
00079
00080 public void dragExit (DragSourceEvent event) {
00081
00082 currentDraggingListNode = null;
00083
00084 }
00085
00086
00087
00088
00089
00090 public abstract void dragGestureRecognized(DragGestureEvent event);
00091
00092
00093
00094
00095
00096
00097
00098
00099
00100
00101
00102
00103
00104
00105
00106
00107
00108
00109
00110
00111 public void dragOver (DragSourceDragEvent event) {
00112
00113
00114 }
00115
00116
00117
00118
00119
00120 public void dropActionChanged ( DragSourceDragEvent event) {
00121 System.out.println( "dropActionChanged");
00122 }
00123 }