I used the generator, which is great but i have two questions:
1) is it possible to change the members visibility from private to protected ? (it may be annoying indeed for the subclasses)
2) when i use an hibernate type for the property tag in the mapping (eg calendar), the code generated is:
Quote:
private java.util.Calendar myDate;
Is it possible to have instead:
Quote:
import java.util.Calendar;
(...)
private Calendar myDate;
Or, in the worst case, i would prefer
Quote:
private Calendar myDate;
since my IDE is able to add the import clause
Note: i used hibernate-extensions-2.1.2