1   package org.wcb.model.vo;
2   
3   /**
4    * <small>
5    * Copyright (c)  2006  wbogaardt.
6    * Permission is granted to copy, distribute and/or modify this document
7    * under the terms of the GNU Free Documentation License, Version 1.2
8    * or any later version published by the Free Software Foundation;
9    * with no Invariant Sections, no Front-Cover Texts, and no Back-Cover
10   * Texts.  A copy of the license is included in the section entitled "GNU
11   * Free Documentation License".
12   * <p/>
13   * $File:  $ <br>
14   * $Change:  $ submitted by $Author: wbogaardt $ at $DateTime: Apr 26, 2006 11:58:07 AM $ <br>
15   * </small>
16   *
17   * @author wbogaardt
18   * @version 1
19   *          Date: Apr 26, 2006
20   *          Time: 11:58:07 AM
21   */
22  
23  public class TotalLogEntriesVO {
24  
25      private String description;
26      private double totalFlight = 0.0;
27      private double totalPIC = 0.0;
28      private double totalSIC = 0.0;
29      private double totalXCountry = 0.0;
30      private double totalFlightInstructing = 0.0;
31      private double totalSolo = 0.0;
32      private double totalDual = 0.0;
33      private double totalSafety = 0.0;
34      private int    totalApproaches = 0;
35      private double totalNight = 0.0;
36      private double totalIMC = 0.0;
37      private double totalSimulatedIMC = 0.0;
38      private double totalSimulatorTime  = 0.0;
39  
40  
41      public void setDescription(String sval) {
42          description = sval;
43      }
44      
45      public String getDescription() {
46          return description;
47      }
48  
49      public double getTotalFlight() {
50          return totalFlight;
51      }
52  
53      public void setTotalFlight(double totalFlight) {
54          this.totalFlight = totalFlight;
55      }
56  
57      public double getTotalPIC() {
58          return totalPIC;
59      }
60  
61      public void setTotalPIC(double totalPIC) {
62          this.totalPIC = totalPIC;
63      }
64  
65      public double getTotalSIC() {
66          return totalSIC;
67      }
68  
69      public void setTotalSIC(double totalSIC) {
70          this.totalSIC = totalSIC;
71      }
72  
73      public double getTotalXCountry() {
74          return totalXCountry;
75      }
76  
77      public void setTotalXCountry(double totalXCountry) {
78          this.totalXCountry = totalXCountry;
79      }
80  
81      public double getTotalFlightInstructing() {
82          return totalFlightInstructing;
83      }
84  
85      public void setTotalFlightInstructing(double totalFlightInstructing) {
86          this.totalFlightInstructing = totalFlightInstructing;
87      }
88  
89      public double getTotalSolo() {
90          return totalSolo;
91      }
92  
93      public void setTotalSolo(double totalSolo) {
94          this.totalSolo = totalSolo;
95      }
96  
97      public double getTotalDual() {
98          return totalDual;
99      }
100 
101     public void setTotalDual(double totalDual) {
102         this.totalDual = totalDual;
103     }
104 
105     public double getTotalSafety() {
106         return totalSafety;
107     }
108 
109     public void setTotalSafety(double totalSafety) {
110         this.totalSafety = totalSafety;
111     }
112 
113     public int getTotalApproaches() {
114         return totalApproaches;
115     }
116 
117     public void setTotalApproaches(int totalApproaches) {
118         this.totalApproaches = totalApproaches;
119     }
120 
121     public double getTotalNight() {
122         return totalNight;
123     }
124 
125     public void setTotalNight(double totalNight) {
126         this.totalNight = totalNight;
127     }
128 
129     public double getTotalIMC() {
130         return totalIMC;
131     }
132 
133     public void setTotalIMC(double totalIMC) {
134         this.totalIMC = totalIMC;
135     }
136 
137     public double getTotalSimulatedIMC() {
138         return totalSimulatedIMC;
139     }
140 
141     public void setTotalSimulatedIMC(double totalSimulatedIMC) {
142         this.totalSimulatedIMC = totalSimulatedIMC;
143     }
144 
145     public double getTotalSimulatorTime() {
146         return totalSimulatorTime;
147     }
148 
149     public void setTotalSimulatorTime(double totalSimulatorTime) {
150         this.totalSimulatorTime = totalSimulatorTime;
151     }
152 
153     public String toString() {
154         return "";    
155     }
156 }