Example usage for org.eclipse.jface.util LocalSelectionTransfer subclass-usage

List of usage examples for org.eclipse.jface.util LocalSelectionTransfer subclass-usage

Introduction

In this page you can find the example usage for org.eclipse.jface.util LocalSelectionTransfer subclass-usage.

Usage

From source file org.eclipse.e4.demio.views.nav.LocalSelectionTransfer.java

/**
 * A LocalSelectionTransfer may be used for drag and drop operations within the
 * same instance of Eclipse. The selection is made available directly for use in
 * the DropTargetListener. dropAccept method. The DropTargetEvent passed to
 * dropAccept does not contain the drop data. The selection may be used for
 * validation purposes so that the drop can be aborted if appropriate. This

From source file org.eclipse.e4.xwt.tools.ui.designer.core.editor.outline.dnd.OutlineNodeTransfer.java

/**
 * @author jliu (jin.liu@soyatec.com)
 */
public class OutlineNodeTransfer extends LocalSelectionTransfer {
    public static final OutlineNodeTransfer INSTANCE = new OutlineNodeTransfer();

From source file org.eclipse.e4.xwt.vex.PalletteSelectionTransfer.java

public class PalletteSelectionTransfer extends LocalSelectionTransfer {

    private static PalletteSelectionTransfer _instance = new PalletteSelectionTransfer();
    /**
     * The get/set methods delegate to JFace's LocalSelectionTransfer to allow
     * data to be exchanged freely whether the client uses this

From source file org.eclipse.ui.views.navigator.LocalSelectionTransfer.java

/**
 * A LocalSelectionTransfer may be used for drag and drop operations within the
 * same instance of Eclipse. The selection is made available directly for use in
 * the DropTargetListener. dropAccept method. The DropTargetEvent passed to
 * dropAccept does not contain the drop data. The selection may be used for
 * validation purposes so that the drop can be aborted if appropriate. This