blob: 8f2bae2a0dabc7b1e96072f4ed897b5d9d203d10 [file] [log] [blame]
package org.javanicus.gsql
public class Reference implements Cloneable {
@Property local
@Property foreign
public Object clone() { // @todo throws CloneNotSupportedException {
def result = new Reference()
result.local = local
result.foreign = foreign
return result
}
}