Searched defs:JTable (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/
H A DJTable.java63 * The <code>JTable</code> is used to display and edit regular two-dimensional tables
67 * for task-oriented documentation and examples of using <code>JTable</code>.
70 * The <code>JTable</code> has many
82 * JTable table = new JTable(dataModel);
86 * {@code JTable}s are typically placed inside of a {@code JScrollPane}. By
87 * default, a {@code JTable} will adjust its width such that
90 * Note that if you wish to use a <code>JTable</code> in a standalone
102 * property to {@code true}, so that the {@code JTable}
107 * When designing applications that use the <code>JTable</cod
220 public class JTable extends JComponent implements TableModelListener, Scrollable, class in inherits:JComponent,TableModelListener,Scrollable,TableColumnModelListener,ListSelectionListener,CellEditorListener,Accessible,RowSorterListener
560 public JTable() { method in class:JTable
573 public JTable(TableModel dm) { method in class:JTable
586 public JTable(TableModel dm, TableColumnModel cm) { method in class:JTable
608 public JTable(TableModel dm, TableColumnModel cm, ListSelectionModel sm) { method in class:JTable
649 public JTable(int numRows, int numColumns) { method in class:JTable
667 public JTable(Vector rowData, Vector columnNames) { method in class:JTable
684 public JTable(final Object[][] rowData, final Object[] columnNames) { method in class:JTable
[all...]

Completed in 435 milliseconds