Package org.jmule.ui.swing.maintabs.transfers

Examples of org.jmule.ui.swing.maintabs.transfers.UploadDetailsDialog


         properties = new JMenuItem("Properties");
         properties.setIcon(ImgRep.getIcon("info.png"));
         properties.addActionListener(new ActionListener() {
           public void actionPerformed(ActionEvent e) {
             UploadSession sessions[] = getSelectedUploadSessions();
             UploadDetailsDialog udd = new UploadDetailsDialog(parent, sessions[0]);
             SwingUtils.setWindowLocationRelativeTo(udd, parent);
             udd.setVisible(true);
           }
         });
      }
     
      public void mousePressed(MouseEvent e) {
View Full Code Here


         properties = new JMenuItem("Properties");
         properties.setIcon(ImgRep.getIcon("info.png"));
         properties.addActionListener(new ActionListener() {
           public void actionPerformed(ActionEvent e) {
             UploadSession sessions[] = getSelectedUploadSessions();
             UploadDetailsDialog udd = new UploadDetailsDialog(parent, sessions[0]);
             SwingUtils.setWindowLocationRelativeTo(udd, parent);
             udd.setVisible(true);
           }
         });
      }
View Full Code Here

TOP

Related Classes of org.jmule.ui.swing.maintabs.transfers.UploadDetailsDialog

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.