| java.lang.Object org.swingml.tablebrowser.ext.TableBrowserContract
Method Summary | |
public int | compareValues(Object a, Object b, int column) | public String | editValue(String column, int row, Object value) | public void | filter(String colname, String value) | public String[] | getHeadings() | public Object | getModelAt(int row, int col) | public String | getText(int row, int col) Try the text field first, if its null, try the value field. | public String | getValue(int row, int col) Try the value field first, if its null, try the text field. | public Object[][] | getValues() Returns the values. | public boolean | hasMore(int row) | public boolean | isEditable(int row, int col) | public void | setHeadings(List headings) Sets the headings. | public void | setValues(Object[][] values) Sets the values. |
sortedColumn | int sortedColumn(Code) | | |
TableBrowserContract | public TableBrowserContract(Object[][] d)(Code) | | |
getText | public String getText(int row, int col)(Code) | | Try the text field first, if its null, try the value field.
|
getValue | public String getValue(int row, int col)(Code) | | Try the value field first, if its null, try the text field.
|
getValues | public Object[][] getValues()(Code) | | Returns the values.
Object[][] |
hasMore | public boolean hasMore(int row)(Code) | | |
isEditable | public boolean isEditable(int row, int col)(Code) | | |
setHeadings | public void setHeadings(List headings)(Code) | | Sets the headings.
Parameters: headings - The headings to set |
setValues | public void setValues(Object[][] values)(Code) | | Sets the values.
Parameters: values - The values to set |
|
|