A B C D E F G H I J K L M N O P R S T U V X Y

A

AD - Variable in class com.faa.flyfaa.Delay
Amount of arrival delay in minutes
Airport - class com.faa.flyfaa.Airport.
Describes a flyFAA Airport object, containing many of the particulars about an airport, including the airport full name, city and state, facility (ARTCC) to which it belongs, as well as Time Zone offset from Eastern time (e.g., Pacific Time = -3), and boolean indication of whether or not daylight savings time is used.
Airport() - Constructor for class com.faa.flyfaa.Airport
Airport constructor method.
Airport(String) - Constructor for class com.faa.flyfaa.Airport
Airport constructor method with a parameter for the Airport name only.
Airport(String, String, String, String, String, double, String, boolean, boolean, String) - Constructor for class com.faa.flyfaa.Airport
Airport constructor method with parameters for Airport characteristics.
airportsMap - Variable in class com.faa.flyfaa.FlyFAAProjectBean
HashMap for storing Airport objects indexed by the airport ID (for ALL AIRPORTS).
Alert_Airport(Airport, int, int, int, int, int, String) - Method in class com.faa.flyfaa.FlyFAAProjectBean
Modifies an existing airport object (in airportsMap) to store the alerted airport information, including X-coordinate on map, Y-coordinate on map, radius of hotspot, X- and Y- coordinate on the regional map (for pacing airports), and color to be displayed.
Alert_Airports(int, int) - Method in class com.faa.flyfaa.FlyFAAProjectBean
Method to write the 'dolayers' client-side javascript function into the document.
alert_layers_end - Variable in class com.faa.flyfaa.FlyFAAProjectBean
This value is used as a parameter to Alert_Airports() by usmap.jsp.
alert_layers_start - Variable in class com.faa.flyfaa.FlyFAAProjectBean
The next available lay[] item index after the U.S.
alert_layers(int) - Method in class com.faa.flyfaa.FlyFAAProjectBean
Generates javascript code to mark the alerted airports (layers) so that they are displayed in the browser.
alert_regional_layers(int, int, String, ArrayList) - Method in class com.faa.flyfaa.FlyFAAProjectBean
Generates javascript code to mark the alerted airports (layers) in a given region so that they are displayed in the browser.
alrtMap - Variable in class com.faa.flyfaa.FlyFAAProjectBean
HashMap for CURRENT ALERTED AIRPORTS: Each item is keyed by the airport id the same way that the airportsMap is, and the value is a Boolean.
ARPT - Variable in class com.faa.flyfaa.Closure
Airport ID of the closed airport.
ARPT - Variable in class com.faa.flyfaa.Delay
Airport ID where this delay is being experienced
ARPT - Variable in class com.faa.flyfaa.GDP
Airport ID for which the Ground Delay Program has been issued.
ARPT - Variable in class com.faa.flyfaa.GStop
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).
ArrivalDepartureElement - class com.faa.flyfaa.ArrivalDepartureElement.
 
ArrivalDepartureElement(String, String, String, String) - Constructor for class com.faa.flyfaa.ArrivalDepartureElement
 
AvgDelay - Variable in class com.faa.flyfaa.GDP
The average delay, in minutes, that has been issued to affected flights.

B

banner(String, String, String) - Method in class com.faa.flyfaa.FlyfaaDbBean
Generates the title banner for an error message.

C

cache - Variable in class com.faa.flyfaa.FlyfaaDbBean
Cache of database connection pools established at application start-up time.
Center - Variable in class com.faa.flyfaa.Airport
Contains the Air Route Traffic Control Center (ARTCC) to which this Airport belongs
cfg - Variable in class com.faa.flyfaa.FlyfaaDbBean
Pointer to the ServletConfig.
checkFAAData() - Method in class com.faa.flyfaa.DatabaseUpdater
Rereads the Delay/GDP/GSTOP/Closure info from the database.
City - Variable in class com.faa.flyfaa.Airport
Contains the name of the City served by this Airport
clearUpdateInProgress() - Method in class com.faa.flyfaa.DatabaseUpdater
Method to unset the UpdateInProgress flag.
closeConnectionObject(Connection) - Method in class com.faa.flyfaa.FlyfaaDbBean
Closes a given Connection object.
ClosedAt - Variable in class com.faa.flyfaa.Closure
The month and day that the airport was closed, followed by ' at ', for example, 'Jun 16 at '
Closure - class com.faa.flyfaa.Closure.
Describes a flyFAA Airport Closure object, containing the particulars about an airport closure, including the airport identifier, the time the airport was closed, the reason it was closed, and when it will reopen (if known).
Closure() - Constructor for class com.faa.flyfaa.Closure
Closure constructor method.
Closure(String, String, String, String, String, String, String, String, int, String, String, String, int, String, String, String, String) - Constructor for class com.faa.flyfaa.Closure
Closure constructor method with arguments to specify the closure time and the reopening time, if it is known.
ClosureA - Variable in class com.faa.flyfaa.FlyFAAProjectBean
Array for Airport Closures; contains Closure objects.
ClosureDate - Variable in class com.faa.flyfaa.Closure
The closure date/time in local time as a string
ClosureDay - Variable in class com.faa.flyfaa.Closure
The day of the closure date in DD format
ClosureElement - class com.faa.flyfaa.ClosureElement.
 
ClosureElement(String, String, String, String) - Constructor for class com.faa.flyfaa.ClosureElement
 
ClosureHour - Variable in class com.faa.flyfaa.Closure
The hour of the closure date in HH24 format
ClosureMinute - Variable in class com.faa.flyfaa.Closure
The minute of the closure date in MI format
ClosureMonth - Variable in class com.faa.flyfaa.Closure
The month of the closure date in MM format (0-11)
ClosureTime - Variable in class com.faa.flyfaa.Closure
The hour and minute ('hhmm') of closure time.
ClosureTimeUTC - Variable in class com.faa.flyfaa.Closure
The hour and minute of the closure time in UTC ('hh:mm UTC')
ClosureYear - Variable in class com.faa.flyfaa.Closure
The year of the closure date in YYYY format
Color - Variable in class com.faa.flyfaa.Airport
Contains the name of the image to use to represent this Airport's colored dot on the map (green.gif, yellow.gif, etc.)
ComputeElapsedTime(long, long) - Method in class com.faa.flyfaa.FlyfaaDbBean
Returns a long representing the absolute value of the difference between one time given in a long variable and a second time given in a long variable.
connect() - Method in class com.faa.flyfaa.FlyfaaDbBean
Makes a connection to the database as long as the 'cache' property has been set.
ConnectionTimeout - Static variable in class com.faa.flyfaa.FlyLog
The amount of time to wait for a connection from the cache before telling the user that the system is busy.
convertGMTtoLocal(int, int, double, double, boolean) - Method in class com.faa.flyfaa.FlyFAAProjectBean
Converts a GMT time string from OIS into a local time string.
ConvertMins(double) - Method in class com.faa.flyfaa.FlyfaaDbBean
Converts minutes to hours and minutes.
createCacheImpl() - Method in class com.faa.flyfaa.FlyFAAPoolServlet
 
createConnectionPool() - Method in class com.faa.flyfaa.FlyFAAPoolServlet
Creates a Database Connection Pool (Also called Pooled Connection) using JDBC 2.0 API.
CreateLog() - Method in class com.faa.flyfaa.FlyFAAPoolServlet
Creates a new PrintWriter, constructing the filename from the flyfaalogfile property and a date/time string of the form yyyy_MMMddHHmm, for writing log messages.
CreateLog(String) - Method in class com.faa.flyfaa.xmlAirportStatusServlet
Creates a new PrintWriter, using the given filename, for writing log messages.

D

d - Variable in class com.faa.flyfaa.DatabaseUpdater
Provides access to the database
DatabaseUpdater - class com.faa.flyfaa.DatabaseUpdater.
Describes a DatabaseUpdater class, which will be kicked off when the FlyfaaProjectBean is instantiated.
DatabaseUpdater(FlyFAAProjectBean, boolean) - Constructor for class com.faa.flyfaa.DatabaseUpdater
Instantiation method for the DatabaseUpdater Thread.
Daylight_Savings_Flag - Variable in class com.faa.flyfaa.Airport
Indicates whether or not this Airport uses Daylight Savings Time
DbAccess - Variable in class com.faa.flyfaa.FlyFAAProjectBean
A reference to the database access bean
dbDriver - Variable in class com.faa.flyfaa.FlyFAAPoolServlet
The type of drivers to be used (thin or thick).
dbDriver - Variable in class com.faa.flyfaa.xmlAirportStatusServlet
The type of drivers to be used (thin or thick).
dbtimer - Variable in class com.faa.flyfaa.FlyFAAProjectBean
A Timer object with which to schedule the DatabaseUpdater
dbu - Variable in class com.faa.flyfaa.FlyFAAProjectBean
A DatabaseUpdater to read Traffic Management Information from the database periodically
DD - Variable in class com.faa.flyfaa.Delay
Amount of departure delay in minutes
DebugLevel - Static variable in class com.faa.flyfaa.FlyLog
The debug level currently in force (from the properties file).
DEBUGLEVEL - Static variable in class com.faa.flyfaa.FlyLog
Constant defining a medium level of logging (exceptions and debug statements)
Delay - class com.faa.flyfaa.Delay.
Describes a Delay object, representing an airport which is experiencing delays.
Delay() - Constructor for class com.faa.flyfaa.Delay
Delay constructor method.
Delay(String, int, int, String) - Constructor for class com.faa.flyfaa.Delay
Delay constructor method with parameters.
DelayA - Variable in class com.faa.flyfaa.FlyFAAProjectBean
Array for Delays; contains Delay objects.
deleteSpaces(String) - Method in class com.faa.flyfaa.FlyFAAProjectBean
Parses a given String, deleting spaces wherever they may be found.
destroy() - Method in class com.faa.flyfaa.FlyFAAPoolServlet
Destroys the servlet.
destroy() - Method in class com.faa.flyfaa.FlyfaaDbBean
 
Disclaimer(String) - Method in class com.faa.flyfaa.FlyFAAProjectBean
Returns a disclaimer in an HTML <TR> tag.
DisplayAllInitiatives(List, boolean) - Method in class com.faa.flyfaa.FlyFAAProjectBean
Returns a String of HTML representing a given set of Traffic Management Initiatives in plain text based on the supplied ArrayList.
DisplayDelayInfo(String, boolean, int, boolean) - Method in class com.faa.flyfaa.FlyFAAProjectBean
Generates HTML code to represent the airport delay and closure information.
DisplayDelayObjRecords(String, boolean, boolean, int) - Method in class com.faa.flyfaa.FlyFAAProjectBean
Generates a string of HTML code to summarize the general Arrival and Departure delay information for a given airport.
DisplayPlainTextDelayInfo() - Method in class com.faa.flyfaa.FlyFAAProjectBean
Returns a String containing the HTML representing the plain text content for the upper frame.
distance - Variable in class com.faa.flyfaa.GDP
The distance associated with a distance-based GDP.
DistanceAirports - Variable in class com.faa.flyfaa.GDP
The list of airports associated by distance with a distance-based GDP.
DOCTYPE - Static variable in class com.faa.flyfaa.FlyFAAPoolServlet
A String specifying which level of HTML a document purports to be written in
DOCTYPE - Static variable in class com.faa.flyfaa.xmlAirportStatusServlet
A string to represent the <!DOCTYPE> tag
doGet(HttpServletRequest, HttpServletResponse) - Method in class com.faa.flyfaa.xmlAirportStatusServlet
Handle the HTTP GET method; build the flyFAA XML Airport Status web page.
doPost(HttpServletRequest, HttpServletResponse) - Method in class com.faa.flyfaa.xmlAirportStatusServlet
Handle the HTTP POST method; forwards request and response to the doGet method to build the flyFAA XML Airport Status web page.
DTD - Static variable in class com.faa.flyfaa.xmlAirportStatusServlet
A string to represent the dtd reference for fly.faa.gov's XML Airport Status page

E

EndTime - Variable in class com.faa.flyfaa.GStop
The time, in Universal Coordinated Time (UTC), that the Ground Stop is expected to end.
ERRORLEVEL - Static variable in class com.faa.flyfaa.FlyLog
Constant defining lowest level of logging (exceptions only)
execGetCenters(String, Connection) - Method in class com.faa.flyfaa.FlyfaaDbBean
Calls the database stored procedure OIS.GET_CENTERS to get a list of centers associated with a keyword (like 'NOWEST' or 'ZDC1').
execGetNewTMIs() - Method in class com.faa.flyfaa.FlyfaaDbBean
Executes code similar to the database stored procedure OIS.NEW_TMIS to find out if there are any new Traffic Management Initiatives since the last time that the DatabaseUpdater ran.
execGetTip(String, Connection) - Method in class com.faa.flyfaa.FlyfaaDbBean
Calls the database stored procedure OIS.GET_TIP_LOCAL to get a tool tip for an airport.
execQuery(String, Connection) - Method in class com.faa.flyfaa.FlyfaaDbBean
Executes an SQL query given as sql using the given Connection.
execUpdate(Connection, String) - Method in class com.faa.flyfaa.FlyfaaDbBean
Executes an SQL INSERT, UPDATE or DELETE command.

F

Facilities - Variable in class com.faa.flyfaa.GDP
Indicates which traffic is included in the program.
Facilities - Variable in class com.faa.flyfaa.GStop
Indicates which traffic is included in the Ground Stop.
FillARPTData(Connection) - Method in class com.faa.flyfaa.FlyFAAProjectBean
Using the database's AIRPORTS, CITIES, STATES and CENTERS tables, this routine fills the airportsMap with airport information, fills the pacingA array if the airport is a pacing airport, and fills up the regional arrays depending on which state the airport is in.
FillDelayData(FlyfaaDbBean) - Method in class com.faa.flyfaa.FlyFAAProjectBean
Reads from the database a list of Ground Delay Programs, Ground Stops, Delay Information and Airport Closure information.
FlyfaaDbBean - class com.faa.flyfaa.FlyfaaDbBean.
JavaBean used for interacting with the database.
FlyfaaDbBean() - Constructor for class com.faa.flyfaa.FlyfaaDbBean
Database access bean constructor.
FlyFAAPoolServlet - class com.faa.flyfaa.FlyFAAPoolServlet.
FlyFAAPoolServlet is the start-up servlet for the flyFAA Java application.
FlyFAAPoolServlet() - Constructor for class com.faa.flyfaa.FlyFAAPoolServlet
 
FlyFAAProjectBean - class com.faa.flyfaa.FlyFAAProjectBean.
JavaBean to hold properties of what in livewire was the project object.
FlyFAAProjectBean() - Constructor for class com.faa.flyfaa.FlyFAAProjectBean
FlyFAA's ("Project Object") Class constructor.
FlyFAAProjectBeanStalk() - Method in class com.faa.flyfaa.FlyFAAProjectBean
FlyFAA's ("Project Object") Class construction completion method.
FlyLock - Variable in class com.faa.flyfaa.FlyFAAProjectBean
True primarily when delay/GDP/GSTOP/Closure data is being read from the database.
FlyLog - class com.faa.flyfaa.FlyLog.
Class used for writing log messages.
FlyLog() - Constructor for class com.faa.flyfaa.FlyLog
FlyLog constructor method.
flyProps - Static variable in class com.faa.flyfaa.FlyFAAPoolServlet
The properties file for the flyfaa java application.
flyProps - Static variable in class com.faa.flyfaa.xmlAirportStatusServlet
The properties file for the flyfaa java application.
FLYProps - Static variable in class com.faa.flyfaa.FlyLog
The Properties object to hold the items in the properties file
fwA - Variable in class com.faa.flyfaa.FlyFAAProjectBean
An array for the Far West Region; contains 3-character FAA airport identifiers

G

GDP - class com.faa.flyfaa.GDP.
Describes a Ground Delay Program object to store Delays by Destination data.
GDP() - Constructor for class com.faa.flyfaa.GDP
GDP constructor method.
GDP(String, String, double, String, int, String) - Constructor for class com.faa.flyfaa.GDP
GDP constructor method with parameters.
GDPA - Variable in class com.faa.flyfaa.FlyFAAProjectBean
Array for most recently retrieved Ground Delay Programs; contains GDP objects.
GDPElement - class com.faa.flyfaa.GDPElement.
 
GDPElement(String, String, String, String) - Constructor for class com.faa.flyfaa.GDPElement
 
getAD() - Method in class com.faa.flyfaa.Delay
Gets the Arrival Delay for this delay.
getAirport(String, boolean) - Method in class com.faa.flyfaa.FlyFAAProjectBean
Gets an Airport object from the AirportsMap based on a given airport_id if the useOldOne flag is not set, or from the oldAirportsMap if the useOldOne flag is set (which means that the DatabaseUpdater Thread is running).
getARPT() - Method in class com.faa.flyfaa.Closure
Gets the Airport ID for this Airport Closure.
getARPT() - Method in class com.faa.flyfaa.Delay
Gets the Airport ID for this delay.
getARPT() - Method in class com.faa.flyfaa.GDP
Gets the Airport ID for this Ground Delay Program.
getARPT() - Method in class com.faa.flyfaa.GStop
Gets the Airport ID for this Ground Stop.
getAvgDelay() - Method in class com.faa.flyfaa.GDP
Gets the average delay, in minutes, issued to flights affected by this Ground Delay Program.
getCache() - Method in class com.faa.flyfaa.FlyfaaDbBean
Gets the FlyfaaDbBean's "cache" property (an object of type OracleConnectionCacheImpl), which was initially instantiated by the start-up servlet FlyFAAPoolServlet.
getCenter() - Method in class com.faa.flyfaa.Airport
Gets the Airport's Center (ARTCC).
getCity() - Method in class com.faa.flyfaa.Airport
Gets the Airport's City.
getClosedAt() - Method in class com.faa.flyfaa.Closure
Gets the Closed at date for this Airport Closure.
getClosureDate() - Method in class com.faa.flyfaa.Closure
Gets a Calendar object representing the Closure Date for this Airport Closure.
getClosureDay() - Method in class com.faa.flyfaa.Closure
Gets the ClosureDay for this Airport Closure.
getClosureGroup(FlyFAAProjectBean) - Method in class com.faa.flyfaa.xmlAirportStatusServlet
Generates an element containing all the Airport Closure information.
getClosureHour() - Method in class com.faa.flyfaa.Closure
Gets the ClosureHour for this Airport Closure.
GetClosureInfoByARPT(String, String) - Method in class com.faa.flyfaa.FlyFAAProjectBean
Generates HTML code to describe airport closure information.
getClosureMinute() - Method in class com.faa.flyfaa.Closure
Gets the ClosureMinute for this Airport Closure.
getClosureMonth() - Method in class com.faa.flyfaa.Closure
Gets the ClosureMonth for this Airport Closure.
getClosureTime() - Method in class com.faa.flyfaa.Closure
Gets the closure time (HH24MI) for this Airport Closure.
getClosureTimeUTC() - Method in class com.faa.flyfaa.Closure
Gets the closure time in UTC for this Airport Closure.
getClosureYear() - Method in class com.faa.flyfaa.Closure
Gets the ClosureYear for this Airport Closure.
getColor() - Method in class com.faa.flyfaa.Airport
Gets the Airport's Color property.
getColorOnly() - Method in class com.faa.flyfaa.Airport
Gets the Airport's Color word (excluding the '.gif' part)
getConnectionTimeout() - Method in class com.faa.flyfaa.FlyLog
Gets the property indicating the amount of time (in whole seconds) to wait for a Connection from the cache.
getDaylight_Savings_Flag() - Method in class com.faa.flyfaa.Airport
Gets the Airport's Daylight Savings Flag.
getDbBean() - Method in class com.faa.flyfaa.FlyFAAProjectBean
Getter method to return the FlyfaaDbBean property.
getDbStartTime() - Method in class com.faa.flyfaa.FlyFAAProjectBean
Gets the date/timestamp when new Traffic Management Initiative data starts being read from the database.
getDD() - Method in class com.faa.flyfaa.Delay
Gets the Departure Delay for this delay.
getDebugLevel() - Method in class com.faa.flyfaa.FlyLog
Gets the current debug level.
getDelaysGroup(FlyFAAProjectBean) - Method in class com.faa.flyfaa.xmlAirportStatusServlet
Generates an element containing all the General Arrival and Departure Delay information.
getDistance() - Method in class com.faa.flyfaa.GDP
Gets the distance associated with a distance-based GDP.
getDistanceAirports() - Method in class com.faa.flyfaa.GDP
Gets the list of airports associated with a distance-based GDP.
getEndTime() - Method in class com.faa.flyfaa.GStop
Gets the time when this Ground Stop is expected to end.
getFacilities() - Method in class com.faa.flyfaa.GDP
Gets the facilities included in this Ground Delay Program
getFacilities() - Method in class com.faa.flyfaa.GStop
Gets the facilities included in this Ground Stop
GetFacilities(String) - Method in class com.faa.flyfaa.FlyFAAProjectBean
Parses the list of included facilities for a Ground Delay Program or Ground Stop (which may include keywords) and returns a string of ARTCC names.
GetGDelayInfoByARPT(String, String) - Method in class com.faa.flyfaa.FlyFAAProjectBean
Generates an array of Strings containing HTML representing a summary of delay information affecting a given airport caused by Ground Delay Programs.
getGMTCalendar() - Method in class com.faa.flyfaa.FlyfaaDbBean
Gets a GMT Calendar.
getGMTCalendar(int, int, int, int, int) - Method in class com.faa.flyfaa.FlyfaaDbBean
Gets a GMT Calendar with a specified date and time.
getGroundDelayProgramsGroup(FlyFAAProjectBean) - Method in class com.faa.flyfaa.xmlAirportStatusServlet
Generates an element containing all the Ground Delay Program information.
getGroundStopGroup(FlyFAAProjectBean) - Method in class com.faa.flyfaa.xmlAirportStatusServlet
Generates an element containing all the Ground Stop information.
GetGStopGDelayInfoByARPT(String, String, String, String) - Method in class com.faa.flyfaa.FlyFAAProjectBean
Generates HTML code to summarize the general status of Ground Stops and Ground Delay Programs which may be affecting a given airport.
GetGStopInfoByARPT(String, String, Airport) - Method in class com.faa.flyfaa.FlyFAAProjectBean
Generates an array of Strings containing HTML representing a summary of delay information affecting a given airport caused by Ground Stops.
getKnownAirport(String, boolean) - Method in class com.faa.flyfaa.FlyFAAProjectBean
Gets an Airport object from the AirportsMap based on a given airport_id if the useOldOne flag is not set, or from the oldAirportsMap if the useOldOne flag is set (which means that the DatabaseUpdater Thread is running).
getLock(FlyFAAProjectBean) - Method in class com.faa.flyfaa.FlyfaaDbBean
Gets the lock flag for the flyFAA Java Application from the FlyFAAProjectBean.
getLogEnabled() - Method in class com.faa.flyfaa.FlyLog
Gets the flag indicating whether or not logging is enabled.
getLogFile() - Method in class com.faa.flyfaa.FlyLog
Gets the filename of the log file.
getLongName() - Method in class com.faa.flyfaa.Airport
Gets the Airport's long name.
getName() - Method in class com.faa.flyfaa.Airport
Gets the Airport's short name.
GetOtherClosureInfo(String) - Method in class com.faa.flyfaa.FlyFAAProjectBean
Returns a string with information about closed airports other than the one the user selected.
getPacing_Flag() - Method in class com.faa.flyfaa.Airport
Gets the Airport's Pacing Flag.
getPI() - Method in class com.faa.flyfaa.FlyFAAProjectBean
Getter method to return the flag indicating whether the FlyFAAProjectBean has been created yet.
getR() - Method in class com.faa.flyfaa.Airport
Gets the Airport's R property (the radius of the circular area where the airport's color appears)
getReason() - Method in class com.faa.flyfaa.Closure
Gets the reason for this Airport Closure.
getReason() - Method in class com.faa.flyfaa.Delay
Gets the reason for this delay.
getReason() - Method in class com.faa.flyfaa.GDP
Gets the reason for this Ground Delay Program.
getReason() - Method in class com.faa.flyfaa.GStop
Gets the reason for this Ground Stop.
getRegionalArray(char, char) - Method in class com.faa.flyfaa.FlyFAAProjectBean
Returns one of the regional ArrayLists.
getRegX() - Method in class com.faa.flyfaa.Airport
Gets the Airport's Regx property (X coordinate on the regional map).
getRegY() - Method in class com.faa.flyfaa.Airport
Gets the Airport's RegY property (Y coordinate on the regional map).
getReopeningAt() - Method in class com.faa.flyfaa.Closure
Gets the month and day of the airport's reopening, or 'not known'.
getReopeningDate() - Method in class com.faa.flyfaa.Closure
Gets a Calendar object representing the Reopening Date for this Airport Closure, if known.
getReopeningDay() - Method in class com.faa.flyfaa.Closure
Gets the ReopeningDay for this Airport Closure.
getReopeningHour() - Method in class com.faa.flyfaa.Closure
Gets the ReopeningHour for this Airport Closure.
getReopeningMinute() - Method in class com.faa.flyfaa.Closure
Gets the ReopeningMinute for this Airport Closure.
getReopeningMonth() - Method in class com.faa.flyfaa.Closure
Gets the ReopeningMonth for this Airport Closure.
getReopeningTime() - Method in class com.faa.flyfaa.Closure
Gets the reopening time for this Airport Closure.
getReopeningTimeUTC() - Method in class com.faa.flyfaa.Closure
Gets the reopening time in UTC for this Airport Closure.
getReopeningYear() - Method in class com.faa.flyfaa.Closure
Gets the ReopeningYear for this Airport Closure.
getServletInfo() - Method in class com.faa.flyfaa.FlyFAAPoolServlet
Overrides the getServletInfo() method which is supposed to return basic information about the Servlet.
getState() - Method in class com.faa.flyfaa.Airport
Gets the Airport's State.
getstrDD() - Method in class com.faa.flyfaa.FlyfaaDbBean
Gets the FlyfaaDbBean's "strDD" property
getTmTimeStamp() - Method in class com.faa.flyfaa.FlyFAAProjectBean
Getter method to return the date/timestamp representing the date/time just after the most recent time when delay/GDP/GSTOP/Closure information was read from the database.
getTooltip() - Method in class com.faa.flyfaa.Airport
Gets the Airport's Tooltip.
getTZ_Offset() - Method in class com.faa.flyfaa.Airport
Gets the Airport's Time Zone Offset.
getUpdateTime() - Static method in class com.faa.flyfaa.UpdateTimeElement
 
getX() - Method in class com.faa.flyfaa.Airport
Gets the Airport's X property (X coordinate on the U.S.
getY() - Method in class com.faa.flyfaa.Airport
Gets the Airport's Y property (Y coordinate on the U.S.
GSElement - class com.faa.flyfaa.GSElement.
 
GSElement(String, String, String) - Constructor for class com.faa.flyfaa.GSElement
 
GStop - class com.faa.flyfaa.GStop.
Describes a Ground Stop object to store the Delays by Destination data.
GStop() - Constructor for class com.faa.flyfaa.GStop
GStop constructor method.
GStop(String, String, double, String) - Constructor for class com.faa.flyfaa.GStop
GStop constructor method with parameters.
GStopA - Variable in class com.faa.flyfaa.FlyFAAProjectBean
Array for Ground Stops; contains GStop objects.

H

headWithTitle(String) - Static method in class com.faa.flyfaa.FlyFAAPoolServlet
Returns an HTML string containing a document title suitable for use at the beginning of a webpage.
headWithTitle(String) - Static method in class com.faa.flyfaa.xmlAirportStatusServlet
Returns an HTML string containing a document title suitable for use at the beginning of a webpage.

I

Init_Alerted_Airport_Data(Connection) - Method in class com.faa.flyfaa.FlyFAAProjectBean
Query the database to find alerted airports.
init(ServletConfig) - Method in class com.faa.flyfaa.FlyFAAPoolServlet
Initializes the servlet.
init(ServletConfig) - Method in class com.faa.flyfaa.xmlAirportStatusServlet
Initializes the servlet.
isDistanceAirport(String) - Method in class com.faa.flyfaa.GDP
Determines if a given Airport is in the list of airports associated with a distance-based GDP.
isDistanceBased() - Method in class com.faa.flyfaa.GDP
Determines if a GDP is distance-based or not.
isDST(Calendar, double) - Method in class com.faa.flyfaa.FlyFAAProjectBean
Determines if the input date (in GMT time) would equate to a daylight savings time in the U.S.
isFlyLocked() - Method in class com.faa.flyfaa.FlyFAAProjectBean
Returns the value of the FlyLock, a boolean intended to limit to one user at a time access to critical sections of code.
isUpdateInProgress() - Method in class com.faa.flyfaa.DatabaseUpdater
Method to return the value of the UpdateInProgress flag.

J

jdbcLogFile - Static variable in class com.faa.flyfaa.FlyFAAPoolServlet
Contains the name of the base log file from the properties file.
jdbcLogFile - Static variable in class com.faa.flyfaa.xmlAirportStatusServlet
Contains the name of the log file.

K

keycenters - Variable in class com.faa.flyfaa.FlyFAAProjectBean
A hashmap for storing the centers associated with the (currently 46) different keywords used by TMSs ('ZNY1', 'NOWEST', '6WEST', etc.)
keywordQuery - Variable in class com.faa.flyfaa.FlyFAAProjectBean
String to use for holding a query during object construction...

L

l_ocpds - Variable in class com.faa.flyfaa.FlyFAAPoolServlet
The source of the database connection pool.
l_ocpds - Variable in class com.faa.flyfaa.xmlAirportStatusServlet
The source of the database connection pool.
LastUpdatedTime() - Method in class com.faa.flyfaa.FlyFAAProjectBean
Displays the last updated time in HTML text and a link to the Glossary of Terms.
loadLogFile(String) - Static method in class com.faa.flyfaa.FlyLog
Opens a possibly pre-existing, non-empty file for logging.
loadNewLogFile(String) - Static method in class com.faa.flyfaa.FlyLog
Opens an empty file for logging.
lockFly() - Method in class com.faa.flyfaa.FlyFAAProjectBean
Locks the FlyLock and returns true if the FlyLock was unlocked.
LogEnabled - Static variable in class com.faa.flyfaa.FlyLog
The property indicating whether or not any logging should occur
Logf - Variable in class com.faa.flyfaa.Airport
Pointer to the log file, which will be named FLYlogyyyy_Monddhhmm.txt (for example, FLYlog2003_Jan291940.txt) and is currently set up to reside in the /web/trace/atcscc/java_logs directory.
Logf - Variable in class com.faa.flyfaa.Closure
Pointer to the log file, which will be named FLYlogyyyy_Monddhhmm.txt (for example, FLYlog2003_Jan291940.txt) and is currently set up to reside in the /web/trace/atcscc/java_logs directory.
Logf - Variable in class com.faa.flyfaa.DatabaseUpdater
Pointer to the log file, which will be named FLYlogyyyy_Monddhhmm.txt (for example, FLYlog2003_Jan291940.txt) and is currently set up to reside in the /web/trace/atcscc/java_logs directory.
Logf - Variable in class com.faa.flyfaa.FlyFAAProjectBean
String containing the name of the log file.
Logf - Variable in class com.faa.flyfaa.FlyfaaDbBean
Pointer to the log file, which will be named FLYlogyyyy_Monddhhmm.txt (for example, FLYlog2003_Jan291940.txt) and is currently set up to reside in the /web/trace/atcscc/java_logs directory.
Logf - Variable in class com.faa.flyfaa.GDP
Identifies what the name of the log file is
Logf - Static variable in class com.faa.flyfaa.xmlAirportStatusServlet
Pointer to the log file, which will be named FLYlogyyyy_Monddhhmm.txt (for example, FLYlog2003_Jan291940.txt) and is currently set up to reside in the /web/trace/atcscc/java_logs directory.
LogFile - Static variable in class com.faa.flyfaa.FlyLog
The path/filename to the file to be used for logging.
logging(int, String) - Static method in class com.faa.flyfaa.xmlAirportStatusServlet
Writes a message at a FlyLog.DebugLevel specified by lvl to the log file.
logging(int, Throwable, String) - Static method in class com.faa.flyfaa.xmlAirportStatusServlet
Writes a message at a DebugLevel specified by lvl with an Exception to the log file.
logging(String) - Method in class com.faa.flyfaa.FlyFAAPoolServlet
Writes a message to the log file prefixed by a date/timestamp.
logging(String) - Static method in class com.faa.flyfaa.xmlAirportStatusServlet
Writes a message to the log file prefixed by a date/timestamp.
logging(Throwable, String) - Method in class com.faa.flyfaa.FlyFAAPoolServlet
Writes a message to the log file including an exception.
logging(Throwable, String) - Static method in class com.faa.flyfaa.xmlAirportStatusServlet
Writes a FlyLog.DebugLevel message with an Exception to the log file.
Longname - Variable in class com.faa.flyfaa.Airport
Contains the Airport's descriptive long name

M

m_connectionPool - Static variable in class com.faa.flyfaa.FlyFAAPoolServlet
The pool of connections
m_connectionPool - Static variable in class com.faa.flyfaa.xmlAirportStatusServlet
The pool of connections
MadeLog - Variable in class com.faa.flyfaa.FlyFAAPoolServlet
Flag to let me know whether the log file has been created.
MadeLog - Variable in class com.faa.flyfaa.xmlAirportStatusServlet
Flag to let me know whether the log file has been created.
MakeAlertDivs(boolean) - Method in class com.faa.flyfaa.FlyFAAProjectBean
Generates and returns a String of HTML code to represent the circular hotspots on the map for the alerted airports.
MakeRegionalAlertDivs(char, char, int, int, int, int, boolean) - Method in class com.faa.flyfaa.FlyFAAProjectBean
Make Alert DIVs for the a given region of the U.S.
MakeRegionalToolTips(String, FlyFAAProjectBean, boolean) - Method in class com.faa.flyfaa.FlyFAAProjectBean
Generates HTML code to represent the pop-up tooltips for airport mouseovers.
MakeToolTips(FlyFAAProjectBean, boolean) - Method in class com.faa.flyfaa.FlyFAAProjectBean
Generates HTML code to represent the pop-up tooltips for airport mouseovers.

N

Name - Variable in class com.faa.flyfaa.Airport
Contains the 3- or possibly 4-character Name of an Airport
ncA - Variable in class com.faa.flyfaa.FlyFAAProjectBean
An array for the North Central Region; contains 3-character FAA airport identifiers
neA - Variable in class com.faa.flyfaa.FlyFAAProjectBean
An array for the Northeast Region; contains 3-character FAA airport identifiers
nwA - Variable in class com.faa.flyfaa.FlyFAAProjectBean
An array for the Northwest Region; contains 3-character FAA airport identifiers

O

ocacheimpl - Static variable in class com.faa.flyfaa.FlyFAAPoolServlet
The pool of Pooled Connections
ocacheimpl - Static variable in class com.faa.flyfaa.xmlAirportStatusServlet
 
ocel - Variable in class com.faa.flyfaa.FlyFAAPoolServlet
An object that registers to receive events generated by a PooledConnection
ocel - Variable in class com.faa.flyfaa.xmlAirportStatusServlet
 
oldAirportsMap - Variable in class com.faa.flyfaa.FlyFAAProjectBean
HashMap for storing Airport objects indexed by the airport ID (for ALL AIRPORTS).
oldClosureA - Variable in class com.faa.flyfaa.FlyFAAProjectBean
Array for saving Closure information while new Closure info is being read.
oldDelayA - Variable in class com.faa.flyfaa.FlyFAAProjectBean
Array for saving Delay information while new Delay info is being read.
oldGDPA - Variable in class com.faa.flyfaa.FlyFAAProjectBean
Array for saving Ground Delay Program information while new GDP info is being read.
oldGStopA - Variable in class com.faa.flyfaa.FlyFAAProjectBean
Array for saving Ground Stop information while new GStop info is being read.
oldMap - Variable in class com.faa.flyfaa.FlyFAAProjectBean
HashMap for PREVIOUSLY ALERTED AIRPORTS (airports which were put into alrtMap during the previous 60-second database refresh).
out - Variable in class com.faa.flyfaa.FlyFAAPoolServlet
A printWriter for the log.
out - Static variable in class com.faa.flyfaa.FlyLog
PrintWriter for generating output
out - Static variable in class com.faa.flyfaa.xmlAirportStatusServlet
A printWriter for the log.
out(int, String, String) - Static method in class com.faa.flyfaa.FlyLog
Writes a message at a DebugLevel specified by lvl to the log file.
out(int, String, Throwable, String) - Static method in class com.faa.flyfaa.FlyLog
Writes a message at a DebugLevel specified by lvl with an Exception to the log file.
out(String, String) - Static method in class com.faa.flyfaa.FlyLog
Writes a DEBUGLEVEL message to the log file.
out(String, Throwable, String) - Static method in class com.faa.flyfaa.FlyLog
Writes a DEBUGLEVEL message with an Exception to the log file.
outSpecial(String, String) - Static method in class com.faa.flyfaa.FlyLog
Writes a special message (with "[*NOTE]" at the beginning of it) to a log file.

P

p - Variable in class com.faa.flyfaa.DatabaseUpdater
Provides access to the FlyFAAProjectBean
Pacing_Flag - Variable in class com.faa.flyfaa.Airport
Indicates whether or not this Airport is a pacing airport (a major airport)
pacingA - Variable in class com.faa.flyfaa.FlyFAAProjectBean
Array for PACING AIRPORTS; indexed by FAA_AIRPORTS.TOOL_ORDER, contains 3-character airport identifiers
PartialSeconds(long) - Method in class com.faa.flyfaa.FlyfaaDbBean
Returns a string representation of a time given in a long variable formatted in seconds and milliseconds.
PI - Variable in class com.faa.flyfaa.FlyFAAProjectBean
A boolean to ensure that the ProjectBean's initialization only occurs once
project - Variable in class com.faa.flyfaa.FlyfaaDbBean
Pointer to the Project Bean
PROPERTIES - Static variable in class com.faa.flyfaa.FlyLog
Location of the Fly-FAA properties file (also set explicitly in FlyFAAPoolServlet.init)

R

R - Variable in class com.faa.flyfaa.Airport
Contains the radius of the circular region where this Airport's colored dot appears
reason - Variable in class com.faa.flyfaa.Delay
Reason for the delay
Reason - Variable in class com.faa.flyfaa.Closure
The reason that the airport was closed.
Reason - Variable in class com.faa.flyfaa.GDP
The reason that the Ground Delay Program had to be implemented.
Reason - Variable in class com.faa.flyfaa.GStop
Reason for the Ground Stop
RegX - Variable in class com.faa.flyfaa.Airport
Contains this Airport's X coordinate on the regional map
RegY - Variable in class com.faa.flyfaa.Airport
Contains this Airport's Y coordinate on the regional map
ReopeningAt - Variable in class com.faa.flyfaa.Closure
The month and day that the airport will reopen, or 'not known'.
ReopeningDate - Variable in class com.faa.flyfaa.Closure
The reopening date/time in local time as a string
ReopeningDay - Variable in class com.faa.flyfaa.Closure
The day of the reopening date in DD format
ReopeningHour - Variable in class com.faa.flyfaa.Closure
The hour of the reopening date in HH24 format
ReopeningMinute - Variable in class com.faa.flyfaa.Closure
The minute of the reopening date in MI format
ReopeningMonth - Variable in class com.faa.flyfaa.Closure
The month of the reopening date in MM format (0-11)
ReopeningTime - Variable in class com.faa.flyfaa.Closure
The hour and minute ('hhmm') of the airport reopening time, or 'NULL' if it is not known
ReopeningTimeUTC - Variable in class com.faa.flyfaa.Closure
The hour and minute of the reopening time in UTC ('hh:mm UTC')
ReopeningYear - Variable in class com.faa.flyfaa.Closure
The year of the reopening date in YYYY format
rs - Variable in class com.faa.flyfaa.FlyFAAProjectBean
ResultSet for use by multiple database queries
rs2 - Variable in class com.faa.flyfaa.FlyFAAProjectBean
ResultSet for use by routines which need two simultaneous queries
run() - Method in class com.faa.flyfaa.DatabaseUpdater
Run method for the DatabaseUpdater Thread.

S

scA - Variable in class com.faa.flyfaa.FlyFAAProjectBean
An array for the South Central Region; contains 3-character FAA airport identifiers
seA - Variable in class com.faa.flyfaa.FlyFAAProjectBean
An array for the Southeast Region; contains 3-character FAA airport identifiers
SecondsOut(long, long) - Method in class com.faa.flyfaa.FlyfaaDbBean
Computes the time difference between two times (in long variables) and returns a string representing the time difference in seconds and milliseconds.
service(HttpServletRequest, HttpServletResponse) - Method in class com.faa.flyfaa.FlyFAAPoolServlet
This method is called whenever this servlet is invoked.
setAD(int) - Method in class com.faa.flyfaa.Delay
Sets the Arrival Delay for this delay.
setARPT(String) - Method in class com.faa.flyfaa.Closure
Sets the Airport ID for this Airport Closure.
setARPT(String) - Method in class com.faa.flyfaa.Delay
Sets the Airport ID for this delay.
setARPT(String) - Method in class com.faa.flyfaa.GDP
Sets the Airport ID for this Ground Delay Program.
setARPT(String) - Method in class com.faa.flyfaa.GStop
Sets the Airport ID for this Ground Stop.
setAvgDelay(double) - Method in class com.faa.flyfaa.GDP
Sets the average delay, in minutes, issued to flights affected by this Ground Delay Program.
setCache(OracleConnectionCacheImpl) - Method in class com.faa.flyfaa.FlyfaaDbBean
Sets the FlyfaaDbBean's "cache" property to the given OracleConnectionCacheImpl, which is set up by the start-up servlet FlyFAAPoolServlet.
setCenter(String) - Method in class com.faa.flyfaa.Airport
Sets the Airport's Center.
setCity(String) - Method in class com.faa.flyfaa.Airport
Sets the Airport's City.
setClosedAt(String) - Method in class com.faa.flyfaa.Closure
Sets the Closed at Date for this Airport Closure.
setClosureDate(String) - Method in class com.faa.flyfaa.Closure
Sets the closure date for this airport closure.
setClosureDay(String) - Method in class com.faa.flyfaa.Closure
Sets the ClosureDay for this Airport Closure.
setClosureHour(String) - Method in class com.faa.flyfaa.Closure
Sets the ClosureHour for this Airport Closure.
setClosureMinute(String) - Method in class com.faa.flyfaa.Closure
Sets the ClosureMinute for this Airport Closure.
setClosureMonth(int) - Method in class com.faa.flyfaa.Closure
Sets the ClosureMonth for this Airport Closure.
setClosureObjRecords(Connection, String) - Method in class com.faa.flyfaa.FlyFAAProjectBean
Sets up the Array of Airport Closure Objects based on querying the ois_airport_closures table.
setClosureTime(String) - Method in class com.faa.flyfaa.Closure
Sets the closure time for this Airport Closure.
setClosureTimeUTC(String) - Method in class com.faa.flyfaa.Closure
Sets the closure time in UTC for this Airport Closure.
setClosureYear(int) - Method in class com.faa.flyfaa.Closure
Sets the ClosureYear for this Airport Closure.
setColor(String) - Method in class com.faa.flyfaa.Airport
Sets the Airport's Color property.
setConnectionTimeout(int) - Method in class com.faa.flyfaa.FlyLog
Sets the property indicating the amount of time (in whole seconds) to wait for a Connection from the cache.
setCoordinates(Airport, int, int, int, int, int, String) - Method in class com.faa.flyfaa.Airport
Sets the Airport's X, Y, R, Regional X, Regional Y and Color properties.
setDaylight_Savings_Flag(boolean) - Method in class com.faa.flyfaa.Airport
Sets the Airport's Daylight Savings Flag.
setDbBean(FlyfaaDbBean) - Method in class com.faa.flyfaa.FlyFAAProjectBean
Sets the FlyfaaDbBean property of the project.
setDbStartTime() - Method in class com.faa.flyfaa.FlyFAAProjectBean
Sets the date/timestamp when new delay data starts being read from the database to the current time.
setDD(int) - Method in class com.faa.flyfaa.Delay
Sets the Departure Delay for this delay.
setDebugLevel(int) - Method in class com.faa.flyfaa.FlyLog
Sets the current debug level.
setDelayObjRecords(Connection, String) - Method in class com.faa.flyfaa.FlyFAAProjectBean
Sets up the Array of Delay Objects based on querying the ois_delay table.
setDistance(int) - Method in class com.faa.flyfaa.GDP
Sets the distance associated with a distance-based GDP.
setDistanceAirports(String) - Method in class com.faa.flyfaa.GDP
Sets the airports associated with a distance-based Ground Delay Program.
setEndTime(double) - Method in class com.faa.flyfaa.GStop
Sets the time when this Ground Stop is expected to end
setFacilities(String) - Method in class com.faa.flyfaa.GDP
Sets the facilities to be included in this Ground Delay Program.
setFacilities(String) - Method in class com.faa.flyfaa.GStop
Sets the facilities to be included in this Ground Stop.
setGDelayObjRecords(Connection, String) - Method in class com.faa.flyfaa.FlyFAAProjectBean
Sets up the Array of Ground Delay Objects based on querying the ois_program table.
setGStopObjRecords(Connection, String) - Method in class com.faa.flyfaa.FlyFAAProjectBean
Sets up the Array of Ground Stop Objects based on querying the ois_gstop table.
setLogEnabled(boolean) - Method in class com.faa.flyfaa.FlyLog
Sets the flag indicating whether or not logging shall be enabled.
setLogFile(String) - Method in class com.faa.flyfaa.FlyLog
Sets the log's filename.
setLongName(String) - Method in class com.faa.flyfaa.Airport
Sets the Airport's long name.
setName(String) - Method in class com.faa.flyfaa.Airport
Sets the Airport's short name.
setPacing_Flag(boolean) - Method in class com.faa.flyfaa.Airport
Sets the Airport's Pacing Flag.
setPI(boolean) - Method in class com.faa.flyfaa.FlyFAAProjectBean
Sets the flag which indicates that the FlyFAAProjectBean has been instantiated yet to the given argument.
setProject(FlyFAAProjectBean) - Method in class com.faa.flyfaa.FlyfaaDbBean
Sets the FlyfaaDbBean's "project" property to the given FlyFAAProjectBean.
setR(int) - Method in class com.faa.flyfaa.Airport
Sets the Airport's R property (the radius of the circular area where the airport's color appears)
setReason(String) - Method in class com.faa.flyfaa.Closure
Sets the reason for this Airport Closure.
setReason(String) - Method in class com.faa.flyfaa.Delay
Sets the reason for this delay.
setReason(String) - Method in class com.faa.flyfaa.GDP
Sets the reason for this Ground Delay Program.
setReason(String) - Method in class com.faa.flyfaa.GStop
Sets the reason for this Ground Stop.
setRegX(int) - Method in class com.faa.flyfaa.Airport
Sets the Airport's RegX property (its X coordinate on the regional map).
setRegY(int) - Method in class com.faa.flyfaa.Airport
Sets the Airport's RegY property (its Y coordinate on the regional map).
setReopeningAt(String) - Method in class com.faa.flyfaa.Closure
Sets the airport's reopening date (month and day).
setReopeningDate(String) - Method in class com.faa.flyfaa.Closure
Sets the reopening date for this airport closure.
setReopeningDay(String) - Method in class com.faa.flyfaa.Closure
Sets the ReopeningDay for this Airport Closure.
setReopeningHour(String) - Method in class com.faa.flyfaa.Closure
Sets the ReopeningHour for this Airport Closure.
setReopeningMinute(String) - Method in class com.faa.flyfaa.Closure
Sets the ReopeningMinute for this Airport Closure.
setReopeningMonth(String) - Method in class com.faa.flyfaa.Closure
Sets the ReopeningMonth for this Airport Closure.
setReopeningTime(String) - Method in class com.faa.flyfaa.Closure
Sets the reopening time for this Airport Closure.
setReopeningTimeUTC(String) - Method in class com.faa.flyfaa.Closure
Sets the reopening time in UTC for this Airport Closure.
setReopeningYear(String) - Method in class com.faa.flyfaa.Closure
Sets the ReopeningYear for this Airport Closure.
setState(String) - Method in class com.faa.flyfaa.Airport
Sets the Airport's State.
setstrDD(String) - Method in class com.faa.flyfaa.FlyfaaDbBean
Sets the FlyfaaDbBean's "strDD" property to the given String.
setTmTimeStamp() - Method in class com.faa.flyfaa.FlyFAAProjectBean
Sets the date/timestamp when data was last read from the database to a Date representing the current time.
setTmTimeStamp(long) - Method in class com.faa.flyfaa.FlyFAAProjectBean
Overloaded method to set the date/timestamp when data was last read from the database to a given date/time.
setTooltip(String) - Method in class com.faa.flyfaa.Airport
Sets the Airport's Tooltip text.
setToolTips(Connection, String) - Method in class com.faa.flyfaa.FlyFAAProjectBean
Method to set the Tooltip property in the Airport objects contained in the arptMap.
setTZ_Offset(double) - Method in class com.faa.flyfaa.Airport
Sets the Airport's Time Zone Offset.
setUpdateInProgress() - Method in class com.faa.flyfaa.DatabaseUpdater
Method to set the UpdateInProgress flag to true.
setX(int) - Method in class com.faa.flyfaa.Airport
Sets the Airport's X property (its X coordinate on the U.S.
setY(int) - Method in class com.faa.flyfaa.Airport
Sets the Airport's Y property (its Y coordinate on the U.S.
State - Variable in class com.faa.flyfaa.Airport
Contains the two-character abbreviation of this Airport's state
stopRunning - Variable in class com.faa.flyfaa.DatabaseUpdater
Flag intended to signal the DatabaseUpdater to stop running.
strDD - Variable in class com.faa.flyfaa.FlyfaaDbBean
String to contain the HTML data produced by FillDelayData
swA - Variable in class com.faa.flyfaa.FlyFAAProjectBean
An array for the Southwest Region; contains 3-character FAA airport identifiers

T

t - Variable in class com.faa.flyfaa.FlyFAAPoolServlet
A Timer object to hold a reference to the Timer used to schedule the DatabaseUpdater
TickerUpdatedTime(Date, String) - Method in class com.faa.flyfaa.FlyFAAProjectBean
Returns the time of a given date, optionally enclosed within a given HTML tag supplied as input.
tmTimeStamp - Variable in class com.faa.flyfaa.FlyFAAProjectBean
Time just after finishing fetching new delay/GDP/GSTOP/Closure data
Tooltip - Variable in class com.faa.flyfaa.Airport
Contains the HTML text which pops up when your mouse hovers over this Airport
toString() - Method in class com.faa.flyfaa.Airport
Override the default toString method.
toString() - Method in class com.faa.flyfaa.Closure
Override the default toString method.
toString() - Method in class com.faa.flyfaa.Delay
Gets the string representation of this delay.
toString() - Method in class com.faa.flyfaa.GDP
Overrides the toString() method of Object.
toString() - Method in class com.faa.flyfaa.GStop
Overrides the toString() method of Object.
TZ_Offset - Variable in class com.faa.flyfaa.Airport
Contains the number of hours this Airport's time zone is offset from GMT

U

unlockFly() - Method in class com.faa.flyfaa.FlyFAAProjectBean
Unlocks the FlyLock, notifies all threads waiting on it and returns true, unless the FlyLock is not currently set, in which case this method returns false.
Update_Airport_Project_Data(Connection, String) - Method in class com.faa.flyfaa.FlyFAAProjectBean
Query database to find alerted airports.
UpdateInProgress - Variable in class com.faa.flyfaa.DatabaseUpdater
Flag to indicate whether a Database Update is in progress
UpdateTimeElement - class com.faa.flyfaa.UpdateTimeElement.
 
UpdateTimeElement() - Constructor for class com.faa.flyfaa.UpdateTimeElement
 

V

vd_dbstart - Variable in class com.faa.flyfaa.FlyFAAProjectBean
Time when data starts being fetched (when lock is set).
VERBOSELEVEL - Static variable in class com.faa.flyfaa.FlyLog
Constant defining the highest level of logging (exceptions, debug statements, anything)

X

X - Variable in class com.faa.flyfaa.Airport
Contains this Airport's X-axis coordinate on the U.S.
xmlAirportStatusServlet - class com.faa.flyfaa.xmlAirportStatusServlet.
A servlet class to do the bulk of the work in generating the flyFAA Airport Status in XML.
xmlAirportStatusServlet() - Constructor for class com.faa.flyfaa.xmlAirportStatusServlet
 
XMLDocument(FlyFAAProjectBean) - Method in class com.faa.flyfaa.xmlAirportStatusServlet
Generates a JDOM Document containing the complete contents of the flyFAA XML Airport Status.

Y

Y - Variable in class com.faa.flyfaa.Airport
Contains this Airport's Y-axis coordinate on the U.S.

A B C D E F G H I J K L M N O P R S T U V X Y