Hi all!
Did anybody use hibernate xdoclet-tag @hibernate.primitive-array? I have not found any real example in the web.
It is necessary to map such a field:
private double[] units;
....
public double[] getUnits() {
return units;
}
public void setUnits(double[] units) {
this.units = units;
}
May be exist the other way to do this?
Thanks in advance for any help.