Package org.xnap.gui.component

Examples of org.xnap.gui.component.MultiLineLabel


    JPanel jpStartup = new JPanel(new GridBagLayout());
    jpStartup.setBorder(GUIHelper.createDefaultBorder
              (XNap.tr("Server List")));
    GridBagHelper.add(this, jpStartup);

    GridBagHelper.add(jpStartup, new MultiLineLabel(XNap.tr("XNap can fetch lists of OpenNap server addresses. These lists are provided by service providers that are not affiliated with the XNap project.")));
   
    serverListTextArea = new JTextArea(napPrefs.getNapigatorURL(), 5, 40);
    GridBagHelper.add(jpStartup, new JScrollPane(serverListTextArea));
   
        autoFetchNapigatorIntervalTextField = new ValidatedTextField
View Full Code Here

TOP

Related Classes of org.xnap.gui.component.MultiLineLabel

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.