return null;
}
public String getColumnPropertyName(String tableName, String columnName) {
Table t = getTable(tableName);
Column c = getColumn(t, columnName);
if (c == null) {
return columnName;
}
String propertyName = c.getPropertyName();
if (propertyName == null) {
return c.getColumnName();
}
return propertyName;
}