Package org.jmule.ui.swing.common

Examples of org.jmule.ui.swing.common.PortTextField


     update_servelist_checkbox = new JCheckBox();
     check_for_updates_checkbox = new JCheckBox();
     nightly_build_warning_checkbox = new JCheckBox();
     tcp_label = new JLabel();
     udp_label = new JLabel();
     tcp_text_field = new PortTextField();
     udp_text_field = new PortTextField();
     download_limit_label = new JLabel();
     upload_limit_label = new JLabel();
     download_limit_text_field = new IntegerTextField();
     upload_limit_text_field = new IntegerTextField();
     download_kb_s_label = new JLabel();
View Full Code Here


    port_label = new JLabel();
    center_panel.add(port_label, new GridBagConstraints(0, 1, 1, 1, 0.0, 0.0, GridBagConstraints.EAST, GridBagConstraints.NONE, new Insets(0, 0, 0, 0), 0, 0));
    port_label.setText("Port");
    ip_text_field = new IPTextField();
    center_panel.add(ip_text_field, new GridBagConstraints(2, 0, 1, 1, 0.0, 0.0, GridBagConstraints.WEST, GridBagConstraints.HORIZONTAL, new Insets(0, 0, 0, 0), 0, 0))
    port_text_field = new PortTextField();
    port_text_field.setHorizontalAlignment(javax.swing.JTextField.CENTER);
    center_panel.add(port_text_field, new GridBagConstraints(2, 1, 1, 1, 0.0, 0.0, GridBagConstraints.WEST, GridBagConstraints.HORIZONTAL, new Insets(0, 0, 0, 0), 0, 0));
    final SNewServerDialog _this = this;
    ok_button.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent event) {
View Full Code Here

        user_name = new JTextField();
        connect_at_start_up = new JCheckBox();
        connection_panel = new JPanel();
        tcp_port_desc = new JLabel();
        tcp_port_caption = new JLabel();
        tcp_port = new PortTextField();
        udp_port_caption = new JLabel();
        udp_port = new PortTextField();
        udp_port_desc = new JLabel();
        disable_udp_port = new JCheckBox();
        // apply skin
        user_name_desc.setFont( skin.getLabelFont() );
View Full Code Here

TOP

Related Classes of org.jmule.ui.swing.common.PortTextField

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.