|
||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--com.faa.flyfaa.GStop
Describes a Ground Stop object to store the Delays by Destination data. The following SQL is used to generate these objects:
select arpt, time, included, reason, ex_arpt from ois_gstop where active = 1
order by arpt
History: March 11, 2000 - Creation
May 15, 2001 - J. Carroll - Added exempt airports
May 21, 2002 - J. Carroll - Converted to a java class
Field Summary | |
private java.lang.String |
ARPT
Airport ID where this ground stop is in effect (flights that are destined to this airport are held at their departure point for the duration of the Ground Stop). |
private double |
EndTime
The time, in Universal Coordinated Time (UTC), that the Ground Stop is expected to end. |
private java.lang.String |
Facilities
Indicates which traffic is included in the Ground Stop. |
private java.lang.String |
Reason
Reason for the Ground Stop |
Constructor Summary | |
GStop()
GStop constructor method. |
|
GStop(java.lang.String ARPT,
java.lang.String facs,
double et,
java.lang.String Reason)
GStop constructor method with parameters. |
Method Summary | |
java.lang.String |
getARPT()
Gets the Airport ID for this Ground Stop. |
double |
getEndTime()
Gets the time when this Ground Stop is expected to end. |
java.lang.String |
getFacilities()
Gets the facilities included in this Ground Stop |
java.lang.String |
getReason()
Gets the reason for this Ground Stop. |
protected void |
setARPT(java.lang.String id)
Sets the Airport ID for this Ground Stop. |
protected void |
setEndTime(double t)
Sets the time when this Ground Stop is expected to end |
protected void |
setFacilities(java.lang.String facs)
Sets the facilities to be included in this Ground Stop. |
protected void |
setReason(java.lang.String r)
Sets the reason for this Ground Stop. |
java.lang.String |
toString()
Overrides the toString() method of Object. |
Methods inherited from class java.lang.Object |
|
Field Detail |
private java.lang.String ARPT
private java.lang.String Facilities
private double EndTime
private java.lang.String Reason
Constructor Detail |
public GStop()
public GStop(java.lang.String ARPT, java.lang.String facs, double et, java.lang.String Reason)
ARPT
- String containing the airport ID for this Ground Stopfacs
- String containing the facilities included in this Ground StopendTime
- double containing the UTC time when this Ground Stop is expected to endReason
- String containing the reason for this Ground StopMethod Detail |
public java.lang.String getARPT()
String
containing the Ground Stop's airport IDprotected void setARPT(java.lang.String id)
id
- String containing the airport ID for this Ground Stoppublic java.lang.String getFacilities()
String
containing the facilities included in this Ground Stopprotected void setFacilities(java.lang.String facs)
facs
- String containing the facilities to be included in this Ground Stoppublic double getEndTime()
double
containing the time when the Ground Stop is expected to endprotected void setEndTime(double t)
t
- double containing the time when this Ground Stop is expected to endpublic java.lang.String getReason()
String
containing the reason for this Ground Stopprotected void setReason(java.lang.String r)
r
- String containing the reason for this Ground Stoppublic java.lang.String toString()
toString
in class java.lang.Object
|
||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |