-
Enhancement
-
Resolution: Done
-
Major
-
None
-
None
-
None
Currently the PersistencePlugin generates this for @OneToMany and @ManyToMany:
private @ManyToMany(mappedBy = "addresses") Set<Customer> customers = new HashSet<Customer>(); public Set getCustomers() { return this.customers; } public void setCustomers(final Set customers) { this.customers = customers; }
There is no generics information <Customer> on either the getter return type or the setter parameter.