CellEditorのBorderを変更

編集者:Terai Atsuhiro
作成日:2005-08-22
更新日:2023-11-16 (木) 14:54:55

概要

JTableのCellEditorにBorderを設定します。

#screenshot

サンプルコード

JTextField tf1 = new JTextField();
tf1.setBorder(BorderFactory.createLineBorder(Color.red, 2));
table.setDefaultEditor(Object.class, new DefaultCellEditor(tf1));

JTextField tf2 = new JTextField();
tf2.setBorder(BorderFactory.createLineBorder(Color.green, 2));
tf2.setHorizontalAlignment(JTextField.RIGHT);
table.setDefaultEditor(Integer.class, new DefaultCellEditor(tf2));
  • &jnlp;
  • &jar;
  • &zip;

解説

サンプルでは、DefaultTableModel#getColumnClassメソッドをオーバーライドして0列目はInteger.classを返すようにしています。Integer.classの場合はBorderが緑、それ以外の場合(Object.class)は赤で描画するようなデフォルトエディタをそれぞれ指定しています。

以下のようにJTable#getColumnClassをオーバーライドしても同様です。

table = new JTable(sorter) {
  public Class getColumnClass(int column) {
    if(column==0) {
      return Integer.class;
    }
    return Object.class;
  }
};

デフォルトレンダラーの設定にも、getColumnClassが返すクラスが影響するので、それぞれレンダラーを設定する必要があります。

TestRenderer tr = new TestRenderer();
table.setDefaultRenderer(Object.class,  tr);
table.setDefaultRenderer(Integer.class, tr);

コメント

  • DefaultTableModel#getColumnClassとJTable#getColumnClassで動作が異なると勘違い*1して解説していたのを修正しました。 -- terai
  • 0列目を実際に編集してソートするとClassCastExceptionが発生するバグがあります。 -- terai