Hi!
Can anybody help me by telling me which is the best way to map a class like this:
Code:
public class PropertyImpl<T> implements Property<T>
{
private String scope;
private T value;
...
}
T can be Integer, Double, Boolean, Date, String or another mapped domain-type.
Objects of all types exist mixed in collections of the type List<Property<?>>.
Thank you for your help!
BTW: Yes, i know the thread at
http://forum.hibernate.org/viewtopic.php?t=945113 , but it did not help me in any way...
Your's
Tiberius