Package org.eclipse.ecf.presence.ui.dnd

Examples of org.eclipse.ecf.presence.ui.dnd.IRosterViewerDropTarget.performDrop()


    public boolean performDrop(Object data) {
      boolean result = false;
      for (Iterator i = rosterPerformDrop.iterator(); i.hasNext();) {
        IRosterViewerDropTarget rdt = (IRosterViewerDropTarget) i.next();
        if (rdt.performDrop(data))
          result = true;
      }
      rosterPerformDrop.clear();
      return result;
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.