01: package myapp;
02:
03: public class ProductDetail {
04:
05: private int _id;
06:
07: private Product _product;
08:
09: private String _name;
10:
11: public int getId() {
12: return _id;
13: }
14:
15: public void setId(int id) {
16: _id = id;
17: }
18:
19: public String getName() {
20: return _name;
21: }
22:
23: public void setName(String name) {
24: _name = name;
25: }
26:
27: public Product getProduct() {
28: return _product;
29: }
30:
31: public void setProduct(Product product) {
32: _product = product;
33: }
34:
35: public String toString() {
36: return "<id: " + _id + " name: " + _name + ">";
37: }
38:
39: }
|