org.dbtools.schema.schemafile.SchemaTableIndex Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dbtools-gen Show documentation
Show all versions of dbtools-gen Show documentation
DBTools ORM Class Generator.
package org.dbtools.schema.schemafile;
import org.simpleframework.xml.ElementList;
import org.simpleframework.xml.Root;
import java.util.List;
@Root
public class SchemaTableIndex {
@ElementList(entry = "indexField", inline = true, required = false)
private List indexFields;
public List getIndexFields() {
return indexFields;
}
public void setIndexFields(List indexFields) {
this.indexFields = indexFields;
}
}