01: package com.db4o.f1.chapter2;
02:
03: public class Car {
04: private String model;
05: private Pilot pilot;
06:
07: public Car(String model) {
08: this .model = model;
09: this .pilot = null;
10: }
11:
12: public Pilot getPilot() {
13: return pilot;
14: }
15:
16: public void setPilot(Pilot pilot) {
17: this .pilot = pilot;
18: }
19:
20: public String getModel() {
21: return model;
22: }
23:
24: public String toString() {
25: return model + "[" + pilot + "]";
26: }
27: }
|