Method Summary |
|
public int | getAlignment() Returns the column's alignment. |
public Comparator | getComparator() returns the table's comparator. |
public Object | getData() Returns the application defined data associated with the column, or
null if it has not been set. |
public Object | getData(String key) Returns the application defined property for the given name, or
null if it has not been set. |
public String | getID() Returns the column's id. |
protected int | getIndex() |
public int | getMaxWidth() Returns the column's maximum width. |
public int | getMinWidth() Returns the column's minimum width. |
public CellRenderer | getRenderer() Returns the column's cell rendered. |
public int | getSortDir() Returns the column's current sort direction. |
public String | getText() Returns the column's text. |
public float | getWidth() Returns the column's width. |
public boolean | isHidden() Returns true if hidden, false otherwise. |
public boolean | isResizable() Returns true if the column is resizable. |
public boolean | isSortable() Returns true if the column is sortable. |
public void | setAlignment(int align) Sets the column's alignment. |
public void | setComparator(Comparator comparator) Sets the column's comparator. |
public void | setData(Object data) Sets the application defined column data. |
public void | setData(String key, Object data) Sets the application defined property with the given name. |
public void | setHidden(boolean hidden) Sets the column's hidden state. |
protected void | setIndex(int index) |
public void | setMaxWidth(int maxWidth) Sets the column's maximum width. |
public void | setMinWidth(int minWidth) Sets the column's minimum width. |
public void | setRenderer(CellRenderer renderer) Sets the column's cell renderer. |
public void | setResizable(boolean resizable) Specifies if the column may be resized. |
public void | setSortable(boolean sortable) Sets the sortable state. |
public void | setWidth(float width) Sets the column's width. |