source: branches/objectmq-1.0/test/test2/Rim.java @ 33

Last change on this file since 33 was 33, checked in by amoreno, 11 years ago

new release version

File size: 517 bytes
Line 
1package test2;
2
3import java.io.Serializable;
4
5public class Rim implements Serializable {
6
7        /**
8         *
9         */
10        private static final long serialVersionUID = 1L;
11
12        private String model;
13        private int inch;
14
15        public Rim() {
16        }
17
18        public Rim(String model, int inch) {
19                this.model = model;
20                this.inch = inch;
21        }
22
23        public String getModel() {
24                return model;
25        }
26
27        public void setModel(String model) {
28                this.model = model;
29        }
30
31        public int getInch() {
32                return inch;
33        }
34
35        public void setInch(int inch) {
36                this.inch = inch;
37        }
38
39}
Note: See TracBrowser for help on using the repository browser.