| java.lang.Object net.sourceforge.squirrel_sql.fw.datasetviewer.cellcomponent.DTProperties
DTProperties | public class DTProperties (Code) | | |
Method Summary | |
public static String | get(String dataTypeName, String propertyName) get the HashMap of column names for the given table name. | public String[] | getDataArray() get data in form that can be used to output to file. | public static void | put(String dataTypeName, String propertyName, String propertyValue) add or replace a table-name/hashmap-of-column-names mapping. | public void | setDataArray(String[] inData) Data in the external form (array of strings) is passed in and must be converted
to the internal form. |
DTProperties | public DTProperties()(Code) | | ctor
|
get | public static String get(String dataTypeName, String propertyName)(Code) | | get the HashMap of column names for the given table name.
it will be null if the table does not have any limitation on the columns to use.
|
getDataArray | public String[] getDataArray()(Code) | | get data in form that can be used to output to file.
This is called from an instance of this class.
|
put | public static void put(String dataTypeName, String propertyName, String propertyValue)(Code) | | add or replace a table-name/hashmap-of-column-names mapping.
If map is null, remove the entry from the tables.
|
setDataArray | public void setDataArray(String[] inData)(Code) | | Data in the external form (array of strings) is passed in and must be converted
to the internal form.
This is called on an instance of this class.
Parameters: inData - array of strings in form "DataTypeClass property=value" |
|
|