Uses of Class
faa.tg.nas.airport.Airport

Packages that use Airport
faa.tg.aircraft This package provides an interface to the xml Traffic Management Feed and associated utilities 
faa.tg.atcview.display   
faa.tg.atcview.displayobjects   
faa.tg.atcview.gui   
faa.tg.departure.client This package provides the Departure GUI for controlling departing aircraft. 
faa.tg.departure.core This package contains classes that are used to manage departing aircraft. 
faa.tg.departure.objects This package contains objects that are sent back and forth between the Eco GUI and the Departure GUI. 
faa.tg.ground.airport   
faa.tg.ground.airport.command   
faa.tg.nas.airport This package provides the simulation model of a Airport 
faa.tg.nas.airport.runway.ils   
faa.tg.nas.airspace This package provides the simulation model of the NAS airspace. 
faa.tg.nas.flight This package provides the simulation model of a Flight, this is the basic management Class for Aircraft in the Simulation. 
faa.tg.nas.route This package provides the simulation model of Navigational Routes. 
faa.tg.prep.aftil Classes pertaining to AFTIL data. 
faa.tg.prep.cdr This package contains classes used to analyze Terminal CDR recordings. 
faa.tg.recording.state This package contains state information about objects, events, conditions, and changes of state in a simulation. 
faa.tg.scenario.importer This package provides the classes used to read data for the Scenario. 
faa.tg.scenario.manager This package contains managers of Aircraft,Routes,Fixs etc.. 
faa.tg.sp.cmd This package contains classes that implement Commands to the aircraft 
 

Uses of Airport in faa.tg.aircraft
 

Methods in faa.tg.aircraft with parameters of type Airport
 void Aircraft.newAirport(Airport theAirport)
          Method to assign a new airport as the aircraft's destination.
 void Aircraft.newAirport(Airport theAirport, Runway theRunway)
          Method to assign a new airport and runway as the aircraft's destination.
 

Uses of Airport in faa.tg.atcview.display
 

Methods in faa.tg.atcview.display that return types with arguments of type Airport
protected  Manager<Airport> AirportDisplayManager.getManager()
           
 

Methods in faa.tg.atcview.display with parameters of type Airport
protected  DisplayAble AirportDisplayManager.makeDisplayAble(Airport obj)
           
 

Uses of Airport in faa.tg.atcview.displayobjects
 

Fields in faa.tg.atcview.displayobjects declared as Airport
private  Airport AirportDisplay.airport
           
 

Constructors in faa.tg.atcview.displayobjects with parameters of type Airport
AirportDisplay(Airport airport, FixDisplaySettings defaultSettings, ColorAndNameDisplaySettings runwaySettings)
           
 

Uses of Airport in faa.tg.atcview.gui
 

Fields in faa.tg.atcview.gui with type parameters of type Airport
private  ObjectDisplayManager<Airport,FixDisplaySettings> AirportMenu.airportManager
           
 

Uses of Airport in faa.tg.departure.client
 

Fields in faa.tg.departure.client declared as Airport
private  Airport AirportBtn.apt
           
private  Airport DepartureRow.deptApt
           
 

Fields in faa.tg.departure.client with type parameters of type Airport
private  java.util.HashMap<java.lang.String,Airport> HoldBtnFrame.airportHashMap
           
 

Methods in faa.tg.departure.client that return Airport
 Airport AirportBtn.getAirport()
          returns airport
 Airport DepartureRow.getDeptApt()
           
 

Methods in faa.tg.departure.client with parameters of type Airport
 void HoldBtnFrame.addAirport(Airport apt)
          add a given airport
private  javax.swing.JPanel HoldBtnFrame.createPanel(Airport apt)
          Returns a panel created using a given airport
 

Constructors in faa.tg.departure.client with parameters of type Airport
AirportBtn(Airport apt, DepartureGUIInterface gui)
          Constructor
RunwayComboBox(Airport apt)
          Constructor
 

Uses of Airport in faa.tg.departure.core
 

Fields in faa.tg.departure.core declared as Airport
private  Airport AirportFix.airport
           
 

Methods in faa.tg.departure.core that return Airport
 Airport AirportFix.getAirport()
          Accessor methods
 

Constructors in faa.tg.departure.core with parameters of type Airport
AirportFix(Airport airport, Fix fix)
          Constructor
 

Uses of Airport in faa.tg.departure.objects
 

Fields in faa.tg.departure.objects declared as Airport
private  Airport DepartureFlight.deptApt
           
 

Methods in faa.tg.departure.objects that return Airport
 Airport DepartureFlight.getDeptApt()
           
 

Constructors in faa.tg.departure.objects with parameters of type Airport
DepartureFlight(SimulationTime startTime, Acid acid, AirportRwyID deptRwy, Airport deptApt, java.lang.String nasSector, java.lang.String status)
          Constructor
PlaceHoldAirport(Airport apt)
          Constructor
RemoveHoldAirport(Airport apt)
          Constructor
 

Uses of Airport in faa.tg.ground.airport
 

Fields in faa.tg.ground.airport declared as Airport
private  Airport AirportOverlay.airport
           
private  Airport AirportConsole.AirportCommandResult.ap
           
protected  Airport AirportCommand.ap
          The airport the command is directed at.
private  Airport AirportConsoleGUI.selectedAirport
           
 

Fields in faa.tg.ground.airport with type parameters of type Airport
private  java.util.Set<Airport> AirportConsole.airportSet
          Set of all available airports, created at initialization.
 

Methods in faa.tg.ground.airport that return Airport
protected  Airport[] AirportConsole.airportArray()
           
 

Methods in faa.tg.ground.airport with parameters of type Airport
 int AirportConsole.AirportComparator.compare(Airport first, Airport second)
           
 AirportConsole.EmptyCommand AirportConsole.EmptyForge.makeCommand(Airport ap, java.lang.String[] substring)
           
 AirportConsole.NullCommand AirportConsole.NullForge.makeCommand(Airport ap, java.lang.String[] substring)
           
 T AirportConsole.AirportCommandForge.makeCommand(Airport ac, java.lang.String[] substring)
          Constructs a AirportCommand of type T
 AirportConsole.AirportCommandResult AirportConsole.newCommand(Airport ap, java.lang.String command)
          Generates and executes a command based on the space separated token in command with subsequent tokens as arguments.
 

Constructors in faa.tg.ground.airport with parameters of type Airport
AirportCommand(Airport ap, java.lang.String[] cmd)
          Constructor for AiportCommands.
AirportConsole.AirportCommandResult(AirportCommand cmd, Airport ap, boolean success, java.lang.String msg)
          The only constructor of AirportCommandResult, it takes all necessary information.
AirportConsole.EmptyCommand(Airport ap)
           
AirportConsole.NullCommand(Airport ap)
           
AirportOverlay(Scenario scenario, Airport airport, Manager<GroundFix> groundFixes, TaxiwayManager taxiwayMgr)
           
 

Uses of Airport in faa.tg.ground.airport.command
 

Methods in faa.tg.ground.airport.command with parameters of type Airport
 ToggleRunway.ActivateRunway ToggleRunway.ActivateRunwayForge.makeCommand(Airport ap, java.lang.String[] cmd)
           
 ToggleRunway.DeactivateRunway ToggleRunway.DeactivateRunwayForge.makeCommand(Airport ap, java.lang.String[] cmd)
           
 ModifyOpenClose.Open ModifyOpenClose.OpenForge.makeCommand(Airport ap, java.lang.String[] substring)
           
 ModifyOpenClose.Close ModifyOpenClose.CloseForge.makeCommand(Airport ap, java.lang.String[] substring)
           
 List List.ListForge.makeCommand(Airport ac, java.lang.String[] substring)
           
 

Constructors in faa.tg.ground.airport.command with parameters of type Airport
List(Airport ap, java.lang.String[] cmd)
          Constructor that passes construction to super.
ModifyOpenClose.Close(Airport ap, java.lang.String[] cmd)
          Constructor that passes construction to super.
ModifyOpenClose.Open(Airport ap, java.lang.String[] cmd)
          Constructor that passes construction to super.
ModifyOpenClose(Airport ap, java.lang.String[] cmd)
          Constructor that passes construction to super.
ToggleRunway.ActivateRunway(Airport ap, java.lang.String[] cmd)
           
ToggleRunway.DeactivateRunway(Airport ap, java.lang.String[] cmd)
           
ToggleRunway(Airport ap, java.lang.String[] cmd)
           
 

Uses of Airport in faa.tg.nas.airport
 

Subclasses of Airport in faa.tg.nas.airport
 class ScaAirport
           Contains information on an airport that is a Self-Controlled Airspace (SCA).
 

Constructors in faa.tg.nas.airport with parameters of type Airport
ScaAirport(Airport airport, AmmMessageCenter ammMessageCenter)
          Constructor for ScaAirport that duplicates a (non-geographic) Airport and sets the geographic features of the ScaAirport.
 

Uses of Airport in faa.tg.nas.airport.runway.ils
 

Fields in faa.tg.nas.airport.runway.ils declared as Airport
private  Airport ILS.airport
           
 

Constructors in faa.tg.nas.airport.runway.ils with parameters of type Airport
ILS(Airport aprt, Runway runwy)
          Constructor for ILS.
ILS(Airport apt, Runway rwy, Localizer loc, GlideSlope gs, Marker outerMarker)
          Constructor for ILS.
 

Uses of Airport in faa.tg.nas.airspace
 

Methods in faa.tg.nas.airspace that return Airport
 Airport Airspace.getAirportByName(java.lang.String airportName)
          Returns an Airport or null if the Airport is not found.
 

Methods in faa.tg.nas.airspace with parameters of type Airport
 GroundAirport Airspace.convert(Airport airport)
           
 GroundRunway Airspace.convert(Runway runway, Airport airport)
           
 

Uses of Airport in faa.tg.nas.flight
 

Fields in faa.tg.nas.flight declared as Airport
private  Airport Flight.arrivalAirport
          The Airport at which the Flight is planned to land.
private  Airport Flight.departureAirport
          The Airport from which the Flight is planned to depart.
 

Methods in faa.tg.nas.flight that return Airport
 Airport Flight.getArrivalAirport()
          Returns the Airport at which the flight is planned to land or null if the Flight is not planned to land in the Simulation.
 Airport Flight.getDepartureAirport()
          Returns the Airport at which the flight is planned to depart or null if the Flight is not planned to depart in the Simulation.
 

Methods in faa.tg.nas.flight with parameters of type Airport
 void Flight.setArrivalAirport(Airport arrivalAirport)
           
private  void Flight.GroundPart.setArrivalAirport(Airport airport)
           
 void Flight.setDepartureAirport(Airport departureAirport)
           
private  void Flight.GroundPart.setDepartureAirport(Airport airport)
           
 

Uses of Airport in faa.tg.nas.route
 

Fields in faa.tg.nas.route with type parameters of type Airport
private  java.util.List<Airport> StarRoute.airportList
          OBSOLETE: delete when no longer need recordings made before 5/20/2008.
private  java.util.List<Airport> SidRoute.airportList
          OBSOLETE: delete when no longer need recordings made before 5/20/2008.
private  java.util.Vector<Airport> StarRoute.airports
          List of all the exit airports.
private  java.util.Vector<Airport> SidRoute.airports
          List of all the exit airports.
private  java.util.List<Airport> AlternateDepartureRoute.mAirports
           
private  java.util.List<Airport> AlternateArrivalRoute.mAirports
           
 

Methods in faa.tg.nas.route that return Airport
 Airport AlternateArrivalRoute.getArrivalAirprot(java.lang.String aApt)
           
 

Methods in faa.tg.nas.route that return types with arguments of type Airport
 java.util.Vector<Airport> StarRoute.getAirportList()
          getAirportList returns a AirportList of the terminating airports
 java.util.Vector<Airport> SidRoute.getAirportList()
          returns the list of all airports
 java.util.List<Airport> AlternateDepartureRoute.getAirportList()
           
 java.util.List<Airport> AlternateArrivalRoute.getAirportList()
           
 

Methods in faa.tg.nas.route with parameters of type Airport
 void StarRoute.addAirport(Airport airport)
          Adds a terminating airport to the star route.
 void SidRoute.addAirport(Airport airport)
          Adds a entry airport to the sid route.
 void AlternateArrivalRoute.addArrivalAirport(Airport aAirport)
           
 void AlternateDepartureRoute.addDepartureAirport(Airport aAirport)
           
 boolean SidRoute.containsAirport(Airport airport)
          Determines if this sid contains the specified airport
 boolean AlternateDepartureRoute.containsAirport(Airport aAirport)
           
 boolean AlternateArrivalRoute.containsAirport(Airport aAirport)
           
 Route SidRoute.getSubRoute(Airport theAirport, Fix theEndFix)
          Gets the portion of this route that ranges from theAirport(inclusive) to theEndFix(inclusive).
 boolean StarRoute.isDestinationAirport(Airport apt)
          This method will look through a star route's airportlist for a given airport.
 

Uses of Airport in faa.tg.prep.aftil
 

Fields in faa.tg.prep.aftil declared as Airport
private  Airport Aftil2TgfGUI.SegPoint.airport
           
private  Airport Aftil2Xml.apt
           
 

Constructors in faa.tg.prep.aftil with parameters of type Airport
Aftil2TgfGUI.SegPoint(GroundRouteSegEntity seg, Airport airport, MapProjection projection)
          Constructor
 

Uses of Airport in faa.tg.prep.cdr
 

Fields in faa.tg.prep.cdr declared as Airport
private  Airport CDRRunway.airport
          airport is a pointer back to the runways airport
 

Method parameters in faa.tg.prep.cdr with type arguments of type Airport
private  java.lang.String TgfFp.getRunway(java.lang.String airport, double acheading, java.util.Hashtable<java.lang.String,Airport> aphash)
           
 

Constructor parameters in faa.tg.prep.cdr with type arguments of type Airport
TgfFp(UFP ufp, java.util.Hashtable<java.lang.String,java.util.Vector<CDR_TD_Message>> trackData, java.util.Hashtable<java.lang.String,Airport> apHash, java.util.Hashtable<java.lang.String,Position2D> fixes, int grain)
           
 

Uses of Airport in faa.tg.recording.state
 

Fields in faa.tg.recording.state declared as Airport
private  Airport FlightState.depAirport
           
 

Methods in faa.tg.recording.state that return Airport
 Airport FlightState.getDepAirport()
           
 Airport FlightGateReleaseEventState.getDepAirport()
           
 Airport FlightGateHoldEventState.getDepAirport()
           
 

Constructors in faa.tg.recording.state with parameters of type Airport
FlightState(Acid acid, AcType acType, SimulationTime startTime, java.lang.String routeString, Ufp ufp, SimulationTime simTime, Runway arrRwy, Airport depAirport, Runway depRwy)
          Creates the FlightState with a standard set of initialization fields.
 

Uses of Airport in faa.tg.scenario.importer
 

Fields in faa.tg.scenario.importer with type parameters of type Airport
private  java.util.Enumeration<Airport> NfdcAirportImporter.airportEnumeration
           
private  Manager<Airport> XmlGroundFixConnectionImporter.airportManager
           
private  Manager<Airport> XmlGroundRouteImporter.airports
           
private  java.util.Enumeration<Airport> NfdcApImporter.apEnumeration
           
private  java.util.Hashtable<java.lang.String,Airport> NfdcApImporter.apHash
           
private  java.util.Hashtable<java.lang.String,Airport> NfdcAirportImporter.apHash
           
 

Methods in faa.tg.scenario.importer that return Airport
 Airport NfdcApImporter.getNext()
           
 Airport NfdcAirportImporter.getNext()
          This method returns the next airport.
 Airport NfdcApImporter.getNextAirport()
          This method returns the next airport.
 Airport NfdcAirportImporter.getNextAirport()
          This method returns the next airport.
 

Methods in faa.tg.scenario.importer that return types with arguments of type Airport
 java.util.Iterator<Airport> XmlAirportImporter.importObjects(org.w3c.dom.Element rootAirportElement)
          This method creates a list of all airports found in a given file.
 

Methods in faa.tg.scenario.importer with parameters of type Airport
private  ILS XmlApproachImporter.createIlsFromElement(org.w3c.dom.Element ilsElement, Runway rwy, Airport airport)
          Creates an ILS object from the ILS element
 void XmlApproachImporter.importApproach(Runway runway, org.w3c.dom.Element approachElement, Airport airport)
          This method reads the given approach element as an approach object and adds it to the given runway
 void XmlRunwayImporter.importRunway(Airport airport, org.w3c.dom.Element runwayElement)
          This method reads in the given runway element and creates a runway object and adds it to the given Airport
 

Constructor parameters in faa.tg.scenario.importer with type arguments of type Airport
XmlGroundFixConnectionImporter(Manager<Airport> airportManager, Manager<GroundFix> groundFixManager)
           
XmlGroundFixConnectionImporter(java.util.Properties aProps, Manager<Airport> airportManager, Manager<GroundFix> groundFixManager)
          creates the XmlGroundFixConnection and imports/creates the GroundFixConnections based on a Properties object.
XmlGroundRouteImporter(Manager<GroundFix> fixManager, Manager<Airport> airports, TaxiwayManager taxiways, Manager<GroundAirport> grndAirports, boolean proposed, boolean closed)
           
XmlGroundRouteImporter(java.util.Properties props, Scenario scenario, Manager<GroundFix> fixManager, Manager<Airport> airports, TaxiwayManager taxiways, Manager<GroundAirport> grndAirports)
          Constructor
 

Uses of Airport in faa.tg.scenario.manager
 

Methods in faa.tg.scenario.manager with parameters of type Airport
protected  AirportMgr.AirportAddedEvent AirportMgr.createObjectAddedEvent(Airport value)
          Fires a new manager event that contains a newly created object.
 

Method parameters in faa.tg.scenario.manager with type arguments of type Airport
 void RunwayMgr.handleObjectAddedEvent(ObjectAddedEvent<? extends Airport> event)
           
 

Constructors in faa.tg.scenario.manager with parameters of type Airport
AirportMgr.AirportAddedEvent(AirportMgr mgr, Airport value)
           
 

Constructor parameters in faa.tg.scenario.manager with type arguments of type Airport
GroundAirportManager(java.lang.Iterable<Airport> airports, Scenario scenario, Manager<GroundFix> groundFixes, TaxiwayManager taxiways)
           
 

Uses of Airport in faa.tg.sp.cmd
 

Fields in faa.tg.sp.cmd declared as Airport
private  Airport AirportCmd.apt
          Deprecated.