Package org.jmule.ui.swing.maintabs.serverlist

Examples of org.jmule.ui.swing.maintabs.serverlist.ServerDetailsDialog


         
          properties = new JMenuItem("Properties", ImgRep.getIcon("properties.png"));
          properties.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent e) {
              Server[] servers = getSelectedServers();
              server_details = new ServerDetailsDialog(parent, servers[0]);
              SwingUtils.setWindowLocationRelativeTo(server_details, parent);
              server_details.setVisible(true);
            }
          });
         
View Full Code Here


         
          properties = new JMenuItem("Properties", ImgRep.getIcon("properties.png"));
          properties.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent e) {
              Server[] servers = getSelectedServers();
              server_details = new ServerDetailsDialog(parent, servers[0]);
              SwingUtils.setWindowLocationRelativeTo(server_details, parent);
              server_details.setVisible(true);
            }
          });
         
View Full Code Here

TOP

Related Classes of org.jmule.ui.swing.maintabs.serverlist.ServerDetailsDialog

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.