use of org.apache.ddlutils.model.IndexColumn in project siena by mandubian.
the class DdlGenerator method fillIndex.
private void fillIndex(org.apache.ddlutils.model.Index i, Field field) {
String[] columns = ClassInfo.getColumnNames(field);
for (String string : columns) {
IndexColumn ic = new IndexColumn(string);
i.addColumn(ic);
}
}
Aggregations