1 package org.hibernate.test.stats; 3 4 import java.util.Set ; 5 6 9 public class Continent { 10 private Integer id; 11 private String name; 12 private Set countries; 13 14 public Integer getId() { 15 return id; 16 } 17 18 public void setId(Integer id) { 19 this.id = id; 20 } 21 22 public String getName() { 23 return name; 24 } 25 26 public void setName(String name) { 27 this.name = name; 28 } 29 30 public Set getCountries() { 31 return countries; 32 } 33 34 public void setCountries(Set countries) { 35 this.countries = countries; 36 } 37 38 } 39 | Popular Tags |