Are there any good books or website that go over creating a JTable? I want to make one column editable. I would like to actually put a inherited JCheckBox
The class you want to look into extending to create your own behavior is DefaultTableModel. That will allow you to define your own behavior. A decent tutorial can be found on sun's site.