1 package ejava.examples.orm.core.mapped;
2
3
4
5
6
7
8
9
10
11 public class XRay {
12 private long id;
13 private Manufacturer maker;
14 private String model;
15
16 public XRay() {}
17 public XRay(long id) { this.id = id; }
18
19 public long getId() { return id; }
20
21 public String getModel() { return model; }
22 public void setModel(String model) {
23 this.model = model;
24 }
25
26 public ejava.examples.orm.core.mapped.Manufacturer getMaker() { return maker; }
27 public void setMaker(ejava.examples.orm.core.mapped.Manufacturer maker) {
28 this.maker = maker;
29 }
30
31 public String toString() {
32 return super.getClass().getName() +
33 ", id=" + id +
34 ", model=" + model +
35 ", maker=" + maker;
36 }
37 }