Package com.eclipserunner.ui.dnd

Examples of com.eclipserunner.ui.dnd.RunnerViewDragListener


    int operations = DND.DROP_COPY | DND.DROP_MOVE;
    Transfer[] transferTypes = new Transfer[] {
      LocalSelectionTransfer.getTransfer(), FileTransfer.getInstance()
    };

    getViewer().addDragSupport(operations, transferTypes, new RunnerViewDragListener(getViewer()));
    getViewer().addDropSupport(operations, transferTypes, new RunnerViewDropListener(getViewer()));
  }
View Full Code Here

TOP

Related Classes of com.eclipserunner.ui.dnd.RunnerViewDragListener

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.