こんにちは私はJListにあるチェックボックスを切り替えるのに問題があります。アイテムがクリックされたときにチェックボックスがオンになっていることを望みます。もう一度チェックされた場合は、チェックされていない状態に切り替えます。CtrlキーやShiftキーを使用せずに、複数のアイテムにチェックマークを付けたり、チェックマークを外したりできるようにしたいと考えています。
public class CustCellRenderer extends JCheckBox
implements ListCellRenderer
{
boolean selected = false;
void CustCellRenderer()
{
setOpaque(true);
setIconTextGap(12);
}
// allows a custom list cell rendering which will enable me to display an icon as well as filename
@Override
public Component getListCellRendererComponent(JList list, Object value, int index, boolean isSelected, boolean cellHasFocus)
{
JCheckBox checkBox = (JCheckBox)value;
if (isSelected)
{
setBackground(list.getSelectionBackground());
setForeground(list.getSelectionForeground());
if (!selected)
{
selected = true;
setSelected(selected);
}
else
{
selected = false;
setSelected(selected);
}
}
else
{
setBackground(list.getBackground());
setForeground(list.getForeground());
setSelected(selected);
}
setText(checkBox.getText());
return this;
}
}
これが私がテーブルにデータを追加しようとしている方法です、何らかの理由で何も表示されません、何か考えはありますか?
public void addDirectoryLabelsToList()
{
// clears all the previous labels from the listModel to ensure only labels
// that refelect the current directory are shown
for (int x = 0; x < tableModel.getRowCount(); x++)
tableModel.removeRow(x);
// iterate through the dirLabels and add them to the listModel
for (JCheckBox j : dirLabels)
{
Vector<Object> obj = new Vector<>();
obj.add(Boolean.FALSE);
obj.add(j.getText());
tableModel.addRow(obj);
}
}