Package org.xnap.gui.component

Examples of org.xnap.gui.component.ValidatedTextField


    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
      (napPrefs.getAutoFetchNapigatorInterval() + "", 5,
       ValidatedTextField.NUMBERS_INT);
    autoFetchNapigatorAction
      = new EnableAction
        (XNap.tr("Refresh lists every"),
View Full Code Here

TOP

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

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.