Package frost.util.gui.search

Examples of frost.util.gui.search.TableFindAction


            uploadToolBar.add(Box.createHorizontalGlue());
            uploadToolBar.add(uploadItemCountLabel);

            // create the main upload panel
            modelTable = new SortedModelTable<FrostUploadItem>(model);
            new TableFindAction().install(modelTable.getTable());
            setLayout(new BorderLayout());
            add(uploadToolBar, BorderLayout.NORTH);
            add(modelTable.getScrollPane(), BorderLayout.CENTER);
            fontChanged();
View Full Code Here


      downloadDirDefaultBackground = downloadDirTextField.getBackground();
      updateDownloadDirTextFieldBackground();

      // create the main download panel
      modelTable = new SortedModelTable<FrostDownloadItem>(model);
      new TableFindAction().install(modelTable.getTable());
      setLayout(new BorderLayout());

      final JPanel panelHeader = new JPanel(new BorderLayout());
      panelHeader.add(downloadToolBar, BorderLayout.PAGE_START);
      panelHeader.add(gridBagLayout, BorderLayout.CENTER);
View Full Code Here

TOP

Related Classes of frost.util.gui.search.TableFindAction

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.