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 13, 2006 10:40:39 AM $ <br>
15   * </small>
16   *
17   * @author wbogaardt
18   * @version 1
19   *          Date: Apr 13, 2006
20   *          Time: 10:40:39 AM
21   */
22  
23  public class LogExportVO {
24  
25      public boolean isEntryDate() {
26          return entryDate;
27      }
28  
29      public void setEntryDate(boolean entryDate) {
30          this.entryDate = entryDate;
31      }
32  
33      public boolean isRegistration() {
34          return registration;
35      }
36  
37      public void setRegistration(boolean registration) {
38          this.registration = registration;
39      }
40  
41      public boolean isFAAFrom() {
42          return FAAFrom;
43      }
44  
45      public void setFAAFrom(boolean FAAFrom) {
46          this.FAAFrom = FAAFrom;
47      }
48  
49      public boolean isVia() {
50          return via;
51      }
52  
53      public void setVia(boolean via) {
54          this.via = via;
55      }
56  
57      public boolean isFAATo() {
58          return FAATo;
59      }
60  
61      public void setFAATo(boolean FAATo) {
62          this.FAATo = FAATo;
63      }
64  
65      public boolean isFlightDuration() {
66          return flightDuration;
67      }
68  
69      public void setFlightDuration(boolean flightDuration) {
70          this.flightDuration = flightDuration;
71      }
72  
73      public boolean isPIC() {
74          return PIC;
75      }
76  
77      public void setPIC(boolean PIC) {
78          this.PIC = PIC;
79      }
80  
81      public boolean isSIC() {
82          return SIC;
83      }
84  
85      public void setSIC(boolean SIC) {
86          this.SIC = SIC;
87      }
88  
89      public boolean isCrossCountry() {
90          return crossCountry;
91      }
92  
93      public void setCrossCountry(boolean crossCountry) {
94          this.crossCountry = crossCountry;
95      }
96  
97      public boolean isFlightInstructing() {
98          return flightInstructing;
99      }
100 
101     public void setFlightInstructing(boolean flightInstructing) {
102         this.flightInstructing = flightInstructing;
103     }
104 
105     public boolean isSafetyPilot() {
106         return safetyPilot;
107     }
108 
109     public void setSafetyPilot(boolean safetyPilot) {
110         this.safetyPilot = safetyPilot;
111     }
112 
113     public boolean isDualReceived() {
114         return DualReceived;
115     }
116 
117     public void setDualReceived(boolean dualReceived) {
118         DualReceived = dualReceived;
119     }
120 
121     public boolean isSolo() {
122         return Solo;
123     }
124 
125     public void setSolo(boolean solo) {
126         Solo = solo;
127     }
128 
129     public boolean isDayTakeoff() {
130         return dayTakeoff;
131     }
132 
133     public void setDayTakeoff(boolean dayTakeoff) {
134         this.dayTakeoff = dayTakeoff;
135     }
136 
137     public boolean isDayLanding() {
138         return dayLanding;
139     }
140 
141     public void setDayLanding(boolean dayLanding) {
142         this.dayLanding = dayLanding;
143     }
144 
145     public boolean isNightTakeoff() {
146         return nightTakeoff;
147     }
148 
149     public void setNightTakeoff(boolean nightTakeoff) {
150         this.nightTakeoff = nightTakeoff;
151     }
152 
153     public boolean isNightLanding() {
154         return nightLanding;
155     }
156 
157     public void setNightLanding(boolean nightLanding) {
158         this.nightLanding = nightLanding;
159     }
160 
161     public boolean isInstrumentApproaches() {
162         return instrumentApproaches;
163     }
164 
165     public void setInstrumentApproaches(boolean instrumentApproaches) {
166         this.instrumentApproaches = instrumentApproaches;
167     }
168 
169     public boolean isConditionNight() {
170         return conditionNight;
171     }
172 
173     public void setConditionNight(boolean conditionNight) {
174         this.conditionNight = conditionNight;
175     }
176 
177     public boolean isActualIMC() {
178         return actualIMC;
179     }
180 
181     public void setActualIMC(boolean actualIMC) {
182         this.actualIMC = actualIMC;
183     }
184 
185     public boolean isSimulatedIMC() {
186         return simulatedIMC;
187     }
188 
189     public void setSimulatedIMC(boolean simulatedIMC) {
190         this.simulatedIMC = simulatedIMC;
191     }
192 
193     public boolean isFlightSim() {
194         return flightSim;
195     }
196 
197     public void setFlightSim(boolean flightSim) {
198         this.flightSim = flightSim;
199     }
200 
201    private boolean entryDate;
202    private boolean registration;
203    private boolean FAAFrom;
204    private boolean via;
205    private boolean FAATo;
206    private boolean flightDuration;
207    private boolean PIC;
208    private boolean SIC;
209    private boolean crossCountry;
210    private boolean flightInstructing;
211    private boolean safetyPilot;
212    private boolean DualReceived;
213    private boolean Solo;
214    private boolean dayTakeoff;
215    private boolean dayLanding;
216    private boolean nightTakeoff;
217    private boolean nightLanding;
218    private boolean instrumentApproaches;
219    private boolean conditionNight;
220    private boolean actualIMC;
221    private boolean simulatedIMC;
222    private boolean flightSim;
223 }