Examples of DesktopDropEvent


Examples of org.jitterbit.tools.xml.xmlviewer.ui.event.DesktopDropEvent

  public void removeDesktopDropListener(DesktopDropListener listener) {
    m_liDesktopDropListeners.remove(listener);
  }
 
  protected final void fireFileDropped(File file) {
    DesktopDropEvent e = null;
    for( DesktopDropListener lst : m_liDesktopDropListeners ) {
      if( e == null )
        e = new DesktopDropEvent(this, file);
      lst.fileDroppedOnDesktop(e);
    }
  }
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.