Example usage for java.awt.dnd DropTargetListener interface-usage

List of usage examples for java.awt.dnd DropTargetListener interface-usage

Introduction

In this page you can find the example usage for java.awt.dnd DropTargetListener interface-usage.

Usage

From source file EditorDropTarget2.java

public class EditorDropTarget2 implements DropTargetListener {
    public EditorDropTarget2(JEditorPane pane) {
        this.pane = pane;

        // Create the DropTarget and register
        // it with the JEditorPane.

From source file net.sf.jabref.gui.entryeditor.SimpleUrlDragDrop.java

/**
 * @author Erik Putrycz erik.putrycz-at-nrc-cnrc.gc.ca
 */

class SimpleUrlDragDrop implements DropTargetListener {
    private static final Log LOGGER = LogFactory.getLog(SimpleUrlDragDrop.class);

From source file javazoom.jlgui.player.amp.skin.DropTargetAdapter.java

public class DropTargetAdapter implements DropTargetListener {
    private static Log log = LogFactory.getLog(DropTargetAdapter.class);

    public DropTargetAdapter() {
        super();
    }

From source file com.mirth.connect.client.ui.editors.JavaScriptEditorDialog.java

public class JavaScriptEditorDialog extends MirthDialog implements DropTargetListener {

    private Frame parent;
    private String savedScript;

    public JavaScriptEditorDialog(String script) {

From source file EditorDropTarget3.java

public class EditorDropTarget3 implements DropTargetListener, PropertyChangeListener {
    public EditorDropTarget3(JEditorPane pane) {
        this.pane = pane;

        // Listen for changes in the enabled property
        pane.addPropertyChangeListener(this);

From source file EditorDropTarget4.java

public class EditorDropTarget4 implements DropTargetListener, PropertyChangeListener {
    public EditorDropTarget4(JEditorPane pane) {
        this.pane = pane;

        // Listen for changes in the enabled property
        pane.addPropertyChangeListener(this);

From source file net.sf.jabref.gui.UrlDragDrop.java

/**
 * @author Erik Putrycz erik.putrycz-at-nrc-cnrc.gc.ca
 */

public class UrlDragDrop implements DropTargetListener {

From source file com.mirth.connect.client.ui.TemplatePanel.java

public class TemplatePanel extends javax.swing.JPanel implements DropTargetListener {
    private static final String MESSAGE_TEMPLATES_BOLD = "<html><b>Message Templates</b></html>";
    private static final String MESSAGE_TEMPLATES = "Message Templates";
    public final String DEFAULT_TEXT = "Paste a sample message here.";
    protected MirthEditorPane parent;
    private SyntaxDocument hl7Document;

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 unikn.dbis.univis.visualization.pivottable.VPivotTable.java

/**
 * TODO: document me!!!
 * <p/>
 * The <code>VPivotTable</code> organizes the areas to drop dimensions for X-/Y-Axis
 * and calculation of the pivot table data for pivot table visualization.
 * <p/>