List of usage examples for java.awt.dnd DragGestureListener interface-usage
From source file JLabelDragSource.java
public class JLabelDragSource implements DragGestureListener, DragSourceListener { public JLabelDragSource(JLabel label) { this.label = label; // Use the default DragSource DragSource dragSource = DragSource.getDefaultDragSource();
From source file DragDropList.java
class MyDragListener implements DragSourceListener, DragGestureListener { DragDropList list; DragSource ds = new DragSource(); public MyDragListener(DragDropList list) {
From source file DNDList.java
public class DNDList extends JList implements DropTargetListener, DragSourceListener, DragGestureListener { /** * enables this component to be a dropTarget */
From source file FileTreeDragSource.java
public class FileTreeDragSource implements DragGestureListener, DragSourceListener { public FileTreeDragSource(FileTree tree) { this.tree = tree; // Use the default DragSource DragSource dragSource = DragSource.getDefaultDragSource();
From source file de.tor.tribes.ui.windows.AbstractDSWorkbenchFrame.java
/** * * @author Charon */ public abstract class AbstractDSWorkbenchFrame extends DSWorkbenchGesturedFrame implements DropTargetListener, DragGestureListener, DragSourceListener {
From source file org.rdv.ui.DataPanelContainer.java
/**
* A container to hold the UI components for the data panels. They may add and
* remove UI components as needed.
*
* @author Jason P. Hanley
* @since 1.1
From source file unikn.dbis.univis.navigation.tree.VTree.java
/**
* TODO: document me!!!
* <p/>
* <code>VTree</code>.
* <p/>
* User: raedler, weiler
From source file de.tor.tribes.ui.algo.AttackTimePanel.java
/** * * @author Torridity */ public class AttackTimePanel extends javax.swing.JPanel implements DragGestureListener, DropTargetListener, DragSourceListener {
From source file Main.java
class DragLabel extends JLabel implements DragGestureListener, DragSourceListener { private DragSource ds = DragSource.getDefaultDragSource(); public DragLabel(String s, int alignment) { super(s, alignment);
From source file Main.java
class DragLabel extends JLabel implements DragGestureListener, DragSourceListener { private DragSource ds = DragSource.getDefaultDragSource(); public DragLabel(String s, int alignment) { super(s, alignment);