Swing/SortTabs のバックアップ(No.1)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- Swing/SortTabs へ行く。
- 1 (2006-04-24 (月) 15:47:22)
- 2 (2006-11-10 (金) 00:12:58)
- 3 (2007-08-28 (火) 12:18:25)
- 4 (2012-10-27 (土) 05:42:27)
- 5 (2013-03-11 (月) 18:27:55)
- 6 (2014-11-20 (木) 01:52:41)
- 7 (2015-02-26 (木) 13:59:40)
- 8 (2016-12-20 (火) 13:59:38)
- 9 (2017-11-09 (木) 17:56:36)
- 10 (2019-06-07 (金) 15:32:57)
- 11 (2021-02-23 (火) 18:07:14)
- 12 (2023-04-30 (日) 12:17:36)
TITLE:JTabbedPaneのタブをソート
JTabbedPaneのタブをソート
編集者:Terai Atsuhiro
作成日:2006-04-24
更新日:2023-04-30 (日) 12:17:36
概要
JTabbedPaneのタブをソートします。
#screenshot
サンプルコード
class SortAction extends AbstractAction { public SortAction(String label, Icon icon) { super(label,icon); } public void actionPerformed(ActionEvent evt) { final Vector list = makeSortedVector(tab); javax.swing.SwingUtilities.invokeLater(new Runnable() { public void run() { setSortedTab(tab, list); } }); } private Vector makeSortedVector(JTabbedPane t) { Vector l = new Vector(); for(int i=0;i<t.getTabCount();i++) { l.addElement(new ComparableTab(t.getTitleAt(i), t.getComponentAt(i))); } Collections.sort(l); return l; } private void setSortedTab(final JTabbedPane t, final Vector l) { t.setVisible(false); t.removeAll(); for(int i=0;i<l.size();i++) { ComparableTab c = (ComparableTab)l.get(i); t.addTab(c.title, c.comp); } t.setVisible(true); } class ComparableTab implements Comparable{ final public String title; final public Component comp; public ComparableTab(String title, Component comp) { this.title = title; this.comp = comp; } public int compareTo(Object o) { return this.title.compareTo(((ComparableTab)o).title); } } }
- &jnlp;
- &jar;
- &zip;
解説
上記のサンプルでは、ソートしたリストを作成したあと、一旦タブをすべて削除し、リストからJTabbedPaneにタブを戻しています。