1 package org.controlhaus.hibernate;
2
3
4
5
6
7 /***
8 * @author <a href="mailto:mattis@inamo.no">Mathias Bjerke</a>
9 * @version $Id: Child.java,v 1.1 2004/10/04 18:24:29 dandiep Exp $
10 */
11 public class Child {
12
13 private long id;
14 private String name;
15 private long hufse;
16
17 public Child() {
18 }
19
20 public Child(String name) {
21 this.name = name;
22 }
23
24 public long getId() {
25 return id;
26 }
27
28 public void setId(long id) {
29 this.id = id;
30 }
31
32 public String getName() {
33 return name;
34 }
35
36 public void setName(String name) {
37 this.name = name;
38 }
39
40 public long getHufse() {
41 return hufse;
42 }
43
44 public void setHufse(long hufse) {
45 this.hufse = hufse;
46 }
47 }