Swing/CyclingSpinnerModel の変更点
- 追加された行はこの色です。
- 削除された行はこの色です。
- Swing/CyclingSpinnerModel へ行く。
- Swing/CyclingSpinnerModel の差分を削除
--- category: swing folder: CyclingSpinnerModel title: JSpinnerのモデルの値をループさせる tags: [JSpinner, SpinnerNumberModel] author: aterai pubdate: 2010-02-01T01:53:39+09:00 description: JSpinnerのモデルで値が最大、最小を超えるとループするように設定します。 image: https://lh4.googleusercontent.com/_9Z4BYR88imo/TQTKYcCKxAI/AAAAAAAAAV4/T8OdovAF6EY/s800/CyclingSpinnerModel.png --- * 概要 [#summary] `JSpinner`のモデルで値が最大、最小を超えるとループするように設定します。 #download(https://lh4.googleusercontent.com/_9Z4BYR88imo/TQTKYcCKxAI/AAAAAAAAAV4/T8OdovAF6EY/s800/CyclingSpinnerModel.png) * サンプルコード [#sourcecode] #code(link){{ spinner03.setModel(new SpinnerNumberModel(20, 0, 59, 1) { @Override public Object getNextValue() { Object n = super.getNextValue(); return Objects.nonNull(n) ? n : getMinimum(); } @Override public Object getPreviousValue() { Object n = super.getPreviousValue(); return Objects.nonNull(n) ? n : getMaximum(); } }); }} * 解説 [#explanation] 上記のサンプルでは、各`SpinnerModel`の`getNextValue()`、`getPreviousValue()`メソッドをオーバーライドすることで、例えば下限値に達した場合は上限値にループするよう設定しています。 - 数値: `SpinnerNumberModel` - 数値モデル(`SpinnerNumberModel`) -- `SpinnerNumberModel#getNextValue()`などが`null`になる場合`SpinnerNumberModel#getMinimum()`で最小値を取得してループ - リスト: `SpinnerListModel` - リストモデル(`SpinnerListModel`) -- `SpinnerListModel#getNextValue()`などが`null`になる場合`SpinnerListModel#getList()#get(0)`でリスト先頭の取得してループ #code{{ spinner04.setModel(new SpinnerListModel(weeks) { @Override public Object getNextValue() { Object o = super.getNextValue(); return Objects.nonNull(o) ? o : getList().get(0); } @Override public Object getPreviousValue() { List l = getList(); Object o = super.getPreviousValue(); return Objects.nonNull(o) ? o : l.get(l.size() - 1); } }); }} * 参考リンク [#reference] - [https://docs.oracle.com/javase/tutorial/uiswing/components/spinner.html#model Creating Custom Spinner Models and Editors] * コメント [#comment] #comment #comment