What methods does JTable implement which are required by the interfaces implemented by the JTable class beyond those interfaces implemented by the various parent classes of JTable?
There is a huge list of such methods specific to JTable class. Few of them are being given here, along with a reference to the oracle's documentation of entire JTable implementation.
addColumn(TableColumn aColumn)
addColumnSelectionInterval(int index0, int index1)
addNotify()
addRowSelectionInterval(int index0, int index1)
changeSelection(int rowIndex, int columnIndex, boolean toggle, boolean extend)
clearSelection()
In the reference documentation here:
https://docs.oracle.com/javase/7/docs/api/javax/swing/JTable.html#getAutoCreateColumnsFromModel()
You can get a detailed list of such methods in the section "Method Summary". Look for the methods which have Modifier and Type not inherited from any other interface. It should simply be int, void boolean etc...
Get Answers For Free
Most questions answered within 1 hours.