I see it is possible to change the "field" names in the
GUI which will generate different accessor and private
member field names, but it also forces these to be the
DB column names. It would be nice to modify the GUI
so that the Fields tab replaced the "Name" column with
2 columns:
'Column Name'
'Member Name'
To begin with these would be the same, but they could
be modified to be different. This is useful if you have
column names that are awkward to use as member field
and method names. E.g.:
Column Name: LP_LType
Member Name: LaunchType
private String _LaunchType;
String getLaunchType()
void setLaunchType(String s)
String getUpdateValues() {
return "LP_Ltype = " + _LaunchType;
}