1   package org.wcb.model.vo;
2   
3   /**
4    * <small>
5    * <p/>
6    * Copyright (c)  2006  wbogaardt.
7    * Permission is granted to copy, distribute and/or modify this document
8    * under the terms of the GNU Free Documentation License, Version 1.2
9    * or any later version published by the Free Software Foundation;
10   * with no Invariant Sections, no Front-Cover Texts, and no Back-Cover
11   * Texts.  A copy of the license is included in the section entitled "GNU
12   * Free Documentation License".
13   * <p/>
14   * $File:  $ <br>
15   * $Change:  $ submitted by $Author: wbogaardt $ at $DateTime: Aug 31, 2006 11:21:17 AM $ <br>
16   * </small>
17   *
18   * @author wbogaardt
19   *         Place holder value object for line items that would go on the FAA8710 form.
20   */
21  
22  public class FAA8710LineItem {
23  
24      private String description;
25      private Double airplanes;
26      private Double rotocraft;
27      private Double poweredLift;
28      private Double gliders;
29      private Double lighterThanAir;
30      private Double simulator;
31      private Double trainingDevice;
32      private Double PCATD;
33  
34      public String getDescription() {
35          return description;
36      }
37  
38      public void setDescription(String description) {
39          this.description = description;
40      }
41  
42      public Double getAirplanes() {
43          return airplanes;
44      }
45  
46      public void setAirplanes(Double airplanes) {
47          this.airplanes = airplanes;
48      }
49  
50      public Double getRotocraft() {
51          return rotocraft;
52      }
53  
54      public void setRotocraft(Double rotocraft) {
55          this.rotocraft = rotocraft;
56      }
57  
58      public Double getPoweredLift() {
59          return poweredLift;
60      }
61  
62      public void setPoweredLift(Double poweredLift) {
63          this.poweredLift = poweredLift;
64      }
65  
66      public Double getGliders() {
67          return gliders;
68      }
69  
70      public void setGliders(Double gliders) {
71          this.gliders = gliders;
72      }
73  
74      public Double getLighterThanAir() {
75          return lighterThanAir;
76      }
77  
78      public void setLighterThanAir(Double lighterThanAir) {
79          this.lighterThanAir = lighterThanAir;
80      }
81  
82      public Double getSimulator() {
83          return simulator;
84      }
85  
86      public void setSimulator(Double simulator) {
87          this.simulator = simulator;
88      }
89  
90      public Double getTrainingDevice() {
91          return trainingDevice;
92      }
93  
94      public void setTrainingDevice(Double trainingDevice) {
95          this.trainingDevice = trainingDevice;
96      }
97  
98      public Double getPCATD() {
99          return PCATD;
100     }
101 
102     public void setPCATD(Double PCATD) {
103         this.PCATD = PCATD;
104     }
105 }