Package org.eclipse.wst.common.ui.internal.dnd

Examples of org.eclipse.wst.common.ui.internal.dnd.DragAndDropCommand


  public XMLDragAndDropManager(TreeViewer viewer) {
    fViewer = viewer;
  }

  public DragAndDropCommand createCommand(Object target, float location, int operations, int operation, Collection source) {
    DragAndDropCommand result = null;
    if (target instanceof Node) {
      result = new DragNodeCommand(target, location, operations, operation, source, fViewer);
    }
    return result;
  }
View Full Code Here

TOP

Related Classes of org.eclipse.wst.common.ui.internal.dnd.DragAndDropCommand

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.