blob: ee82608e57f83514f818911849a4f300add49db2 [file] [log] [blame]
package org.javanicus.gsql
public class Index implements Cloneable {
@Property name
@Property List indexColumns
public Index() {
indexColumns = []
}
public Object clone() { //@todo throws CloneNotSupportedException {
def result = new Index()
result.name = name
result.indexColumns = indexColumns.clone()
return result
}
}