jp.hishidama.swing.table
クラス LazyTableModel.ChangeValue

java.lang.Object
  上位を拡張 jp.hishidama.swing.table.LazyTableModel.ChangeValue
すべての実装されたインタフェース:
Cloneable
含まれているクラス:
LazyTableModel

public static class LazyTableModel.ChangeValue
extends Object
implements Cloneable

変更前後の値を保持する。


コンストラクタの概要
LazyTableModel.ChangeValue(int type, Object value, Object old)
          コンストラクター.
 
メソッドの概要
 Object getOldValue()
          古い値を取得.
 int getType()
          ステータス取得.
 Object getValue()
          新しい値を取得.
 void setOldValue(Object old)
          古い値を設定.
 void setType(int type)
          ステータス設定.
 void setValue(Object value)
          新しい値を設定.
 String toString()
           
 
クラス java.lang.Object から継承されたメソッド
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

コンストラクタの詳細

LazyTableModel.ChangeValue

public LazyTableModel.ChangeValue(int type,
                                  Object value,
                                  Object old)
コンストラクター.

パラメータ:
type - ステータス
value - 新しい値
old - 古い値
メソッドの詳細

setType

public void setType(int type)
ステータス設定.

パラメータ:
type - ステータス

getType

public int getType()
ステータス取得.

戻り値:
ステータス

setValue

public void setValue(Object value)
新しい値を設定.

パラメータ:
value - 値

getValue

public Object getValue()
新しい値を取得.

戻り値:

setOldValue

public void setOldValue(Object old)
古い値を設定.

パラメータ:
old - 値

getOldValue

public Object getOldValue()
古い値を取得.

戻り値:

toString

public String toString()
オーバーライド:
クラス Object 内の toString