| Code: |
|
<set name="audioformats" inverse="true"> <key> <column name="formatid" precision="9" scale="0" /> </key> <one-to-many class="com.test.hibernate.AudioAsset" /> </set> |
| Code: |
|
private Set audioformats = new HashSet(0); |
| Code: |
|
private Set<AudioFormat> audioformats = new HashSet<AudioFormat>(0); |