Uses of Class
javax.swing.table.TableColumn
Packages that use TableColumn
包
描述
Provides a set of "lightweight" (all-Java language) components
that, to the maximum degree possible, work the same on all platforms.
Provides classes and interfaces for dealing with
javax.swing.JTable.-
Uses of TableColumn in javax.swing
Methods in javax.swing that return TableColumn修饰符和类方法描述Returns theTableColumnobject for the column in the table whose identifier is equal toidentifier, when compared usingequals.Methods in javax.swing with parameters of type TableColumn修饰符和类方法描述voidJTable.addColumn(TableColumn aColumn) AppendsaColumnto the end of the array of columns held by thisJTable's column model.voidJTable.removeColumn(TableColumn aColumn) RemovesaColumnfrom thisJTable's array of columns. -
Uses of TableColumn in javax.swing.table
Fields in javax.swing.table declared as TableColumn修饰符和类Field描述protected TableColumnJTableHeader.draggedColumnThe index of the column being dragged.protected TableColumnJTableHeader.resizingColumnThe index of the column being resized.Fields in javax.swing.table with type parameters of type TableColumn修饰符和类Field描述protected Vector<TableColumn> DefaultTableColumnModel.tableColumnsArray of TableColumn objects in this modelMethods in javax.swing.table that return TableColumn修饰符和类方法描述DefaultTableColumnModel.getColumn(int columnIndex) Returns theTableColumnobject for the column atcolumnIndex.TableColumnModel.getColumn(int columnIndex) Returns theTableColumnobject for the column atcolumnIndex.JTableHeader.getDraggedColumn()Returns the dragged column, if and only if, a drag is in process, otherwise returnsnull.JTableHeader.getResizingColumn()Returns the resizing column.Methods in javax.swing.table that return types with arguments of type TableColumn修饰符和类方法描述DefaultTableColumnModel.getColumns()Returns anEnumerationof all the columns in the model.TableColumnModel.getColumns()Returns anEnumerationof all the columns in the model.Methods in javax.swing.table with parameters of type TableColumn修饰符和类方法描述voidDefaultTableColumnModel.addColumn(TableColumn aColumn) AppendsaColumnto the end of thetableColumnsarray.voidTableColumnModel.addColumn(TableColumn aColumn) AppendsaColumnto the end of thetableColumnsarray.voidDefaultTableColumnModel.removeColumn(TableColumn column) Deletes thecolumnfrom thetableColumnsarray.voidTableColumnModel.removeColumn(TableColumn column) Deletes theTableColumncolumnfrom thetableColumnsarray.voidJTableHeader.setDraggedColumn(TableColumn aColumn) Sets the header'sdraggedColumntoaColumn.voidJTableHeader.setResizingColumn(TableColumn aColumn) Sets the header'sresizingColumntoaColumn.