1 package org.hibernate.test.legacy; 3 4 import java.util.Set ; 5 6 7 public class Mono extends Top { 8 9 private Set strings; 10 11 15 public Mono(int c) { 16 super(c); 17 } 18 19 22 public Mono() { 23 super(); 24 } 25 26 30 public Set getStrings() { 31 return strings; 32 } 33 34 38 public void setStrings(Set strings) { 39 this.strings = strings; 40 } 41 42 } 43 | Popular Tags |