NASA World Wind

Uses of Interface
gov.nasa.worldwind.avlist.AVList

Packages that use AVList
gov.nasa.worldwind   
gov.nasa.worldwind.applications.sar   
gov.nasa.worldwind.avlist   
gov.nasa.worldwind.awt   
gov.nasa.worldwind.event   
gov.nasa.worldwind.examples   
gov.nasa.worldwind.globes   
gov.nasa.worldwind.layers   
gov.nasa.worldwind.layers.Earth   
gov.nasa.worldwind.layers.Mars   
gov.nasa.worldwind.layers.Moon   
gov.nasa.worldwind.layers.placename   
gov.nasa.worldwind.layers.rpf   
gov.nasa.worldwind.pick   
gov.nasa.worldwind.render   
gov.nasa.worldwind.retrieve   
gov.nasa.worldwind.util   
gov.nasa.worldwind.view   
gov.nasa.worldwind.wms   
 

Uses of AVList in gov.nasa.worldwind
 

Subinterfaces of AVList in gov.nasa.worldwind
 interface Model
           
 interface SceneController
           
 interface View
          The View interface provides a coordinate transformation from model coordinates to eye coordinates.
 interface WorldWindow
          The top-level interface common to all toolkit-specific World Wind windows.
 interface WorldWindowGLDrawable
           
 interface WWObject
          An interface provided by the major World Wind components to provide attribute-value list management and property change management.
 

Classes in gov.nasa.worldwind that implement AVList
 class AbstractSceneController
           
 class AnaglyphSceneController
          Allows for stereo anaglyph display mode.
 class BasicModel
           
 class BasicSceneController
           
 class WorldWindowGLAutoDrawable
          A non-platform specific WorldWindow class.
 class WorldWindowImpl
          An implementation class for the WorldWindow interface.
 class WWObjectImpl
          Implements WWObject functionality.
 

Uses of AVList in gov.nasa.worldwind.applications.sar
 

Classes in gov.nasa.worldwind.applications.sar that implement AVList
 class LicenseAgreement
           
 class NOSALicenseAgreement
           
 

Constructors in gov.nasa.worldwind.applications.sar with parameters of type AVList
LicenseAgreement(Object license, String licenseKey, AVList params)
           
 

Uses of AVList in gov.nasa.worldwind.avlist
 

Classes in gov.nasa.worldwind.avlist that implement AVList
 class AVListImpl
          An implementation class for the AVList interface.
 

Methods in gov.nasa.worldwind.avlist that return AVList
 AVList AVListImpl.clearList()
           
 AVList AVList.clearList()
           
 AVList AVListImpl.copy()
           
 AVList AVList.copy()
          Returns a shallow copy of this AVList instance: the keys and values themselves are not cloned.
 

Methods in gov.nasa.worldwind.avlist with parameters of type AVList
static Double AVListImpl.getDoubleValue(AVList avList, String key)
           
static Double AVListImpl.getDoubleValue(AVList avList, String key, Double defaultValue)
           
static Integer AVListImpl.getIntegerValue(AVList avList, String key)
           
static Integer AVListImpl.getIntegerValue(AVList avList, String key, Integer defaultValue)
           
static Long AVListImpl.getLongValue(AVList avList, String key)
           
static Long AVListImpl.getLongValue(AVList avList, String key, Long defaultValue)
           
static String AVListImpl.getStringValue(AVList avList, String key)
           
static String AVListImpl.getStringValue(AVList avList, String key, String defaultValue)
           
 void AVListImpl.setValues(AVList list)
           
 void AVList.setValues(AVList avList)
           
 

Uses of AVList in gov.nasa.worldwind.awt
 

Classes in gov.nasa.worldwind.awt that implement AVList
 class AWTInputHandler
           
 class WorldWindowGLCanvas
          WorldWindowGLCanvas is a heavyweight AWT component for displaying World Wind Models (globe and layers).
 class WorldWindowGLJPanel
           
 

Methods in gov.nasa.worldwind.awt that return AVList
 AVList WorldWindowGLJPanel.clearList()
           
 AVList WorldWindowGLCanvas.clearList()
           
 AVList WorldWindowGLJPanel.copy()
           
 AVList WorldWindowGLCanvas.copy()
           
 

Methods in gov.nasa.worldwind.awt with parameters of type AVList
 void WorldWindowGLJPanel.setValues(AVList avList)
           
 void WorldWindowGLCanvas.setValues(AVList avList)
           
 

Uses of AVList in gov.nasa.worldwind.event
 

Subinterfaces of AVList in gov.nasa.worldwind.event
 interface InputHandler
           
 

Uses of AVList in gov.nasa.worldwind.examples
 

Classes in gov.nasa.worldwind.examples that implement AVList
 class LineBuilder
          A utility class to interactively build a polyline.
 class SurfaceImageLayer
           
 

Uses of AVList in gov.nasa.worldwind.globes
 

Subinterfaces of AVList in gov.nasa.worldwind.globes
 interface ElevationModel
          

Provides the elevations of all points on a Globe .

 interface Globe
           
 interface Tessellator
           
 

Classes in gov.nasa.worldwind.globes that implement AVList
 class BasicElevationModel
          This class represents a single tile in the data set and contains the information that needs to be cached.
 class Earth
           
 class EarthElevationModel
           
 class EarthFlat
           
 class EllipsoidalGlobe
           
 class FlatGlobe
          Flat globe.
 class Mars
           
 class MarsElevationModel
           
 class Moon
           
 class MoonElevationModel
           
 class RectangularTessellator
           
 

Uses of AVList in gov.nasa.worldwind.layers
 

Subinterfaces of AVList in gov.nasa.worldwind.layers
 interface Layer
           
 

Classes in gov.nasa.worldwind.layers that implement AVList
 class AbstractLayer
           
 class AnnotationLayer
          The AnnotationLayer class manages a collection of Annotation objects for rendering and picking.
 class BasicTiledImageLayer
           
 class CompassLayer
           
 class CrosshairLayer
          Renders a crosshair icon in the viewport center or at a specified location.
 class FogLayer
          Sets fog range/density according to view altitude.
 class IconLayer
          The IconLayer class manages a collection of WWIcon objects for rendering and picking.
 class LayerList
           
 class RenderableLayer
          The RenderableLayer class manages a collection of Renderable objects for rendering, picking, and disposal.
 class ScalebarLayer
          Renders a scalebar graphic in a screen corner.
 class SkyColorLayer
          Paints the sky color background depending on altitude.
 class SkyGradientLayer
          Renders an atmosphere around the globe and a sky dome at low altitude.
 class StarsLayer
          Renders a star background based on a subset of ESA Hipparcos catalog.
 class TerrainProfileLayer
          Displays a terrain profile graph in a screen corner.
 class TiledImageLayer
           
 class TrackLayer
          The TrackLayer class manages a collection of Track objects for rendering and picking.
 class TrackMarkerLayer
           
 class TrackPipesLayer
           
 class WorldMapLayer
          Displays a world map overlay with a current position crosshair in a screen corner.
 

Methods in gov.nasa.worldwind.layers that return AVList
 AVList LayerList.clearList()
           
 AVList LayerList.copy()
           
 

Methods in gov.nasa.worldwind.layers with parameters of type AVList
static Layer WMSLayerFactory.newLayer(Capabilities caps, AVList params)
           
 void LayerList.setValues(AVList avList)
           
 

Constructors in gov.nasa.worldwind.layers with parameters of type AVList
BasicTiledImageLayer(AVList params)
           
 

Uses of AVList in gov.nasa.worldwind.layers.Earth
 

Classes in gov.nasa.worldwind.layers.Earth that implement AVList
 class BMNGOneImage
           
 class BMNGSurfaceLayer
           
 class BMNGWMSLayer
          Displays one of the twelve month of Blue Marble Next generation 2004 + Bathymetry via WMS.
 class CountryBoundariesLayer
           
 class EarthNASAPlaceNameLayer
           
 class LandsatI3
           
 class LandsatI3WMSLayer
           
 class MGRSGraticuleLayer
           
 class NAIPCalifornia
           
 class NAIPCaliforniaWMS
           
 class NASAEarthObservatory
           
 class NASAWFSPlaceNameLayer
           
 class OpenStreetMapLayer
          OpenStreetMap WMS layer(s).
 class USGSDigitalOrtho
           
 class USGSTopographicMaps
           
 class USGSTopoHighRes
           
 class USGSTopoLowRes
           
 class USGSTopoMedRes
           
 class USGSUrbanAreaOrtho
           
 class UTMGraticuleLayer
          Displays the UTM graticule.
 

Uses of AVList in gov.nasa.worldwind.layers.Mars
 

Classes in gov.nasa.worldwind.layers.Mars that implement AVList
 class MDIMLayer
          Layer for Mars MDIM (ToMars-JPL-USGS) dataset.
 class MOCColorizedBaseLayer
          Base (one image) layer for Mars MOC Colorized dataset.
 class MOCColorizedLayer
          Layer for Mars MOC 256 colorized dataset.
 class MOCLayer
          Layer for Mars MOC 256 dataset.
 class MolaColorASULayer
          Layer for Mars MOLA Color (ASU) dataset.
 class MolaColoredJPLLayer
          Layer for Mars MOLA Colored (ToMars-JPL) dataset.
 class THEMISColorLayer
          Layer for Mars THEMIS Color (ASU) dataset.
 class THEMISLayer
          Layer for Mars THEMIS (ASU) dataset.
 

Uses of AVList in gov.nasa.worldwind.layers.Moon
 

Classes in gov.nasa.worldwind.layers.Moon that implement AVList
 class Clementine30Layer
          Layer for Moon Clementin 30xx dataset.
 class Clementine40BaseLayer
          Base (one image) layer for Moon Clementine 40xx color dataset.
 class Clementine40Layer
          Layer for Moon Clementin 40xx color dataset.
 class ShadedElevationLayer
          Layer for Moon shaded elevation dataset.
 

Uses of AVList in gov.nasa.worldwind.layers.placename
 

Classes in gov.nasa.worldwind.layers.placename that implement AVList
 class PlaceNameLayer
           
 

Uses of AVList in gov.nasa.worldwind.layers.rpf
 

Classes in gov.nasa.worldwind.layers.rpf that implement AVList
 class RPFTiledImageLayer
           
 

Methods in gov.nasa.worldwind.layers.rpf that return AVList
static AVList RPFTiledImageLayer.xmlStateToParams(String stateInXml)
           
 

Constructors in gov.nasa.worldwind.layers.rpf with parameters of type AVList
RPFTiledImageLayer(AVList params)
           
 

Uses of AVList in gov.nasa.worldwind.pick
 

Classes in gov.nasa.worldwind.pick that implement AVList
 class PickedObject
           
 

Uses of AVList in gov.nasa.worldwind.render
 

Subinterfaces of AVList in gov.nasa.worldwind.render
 interface DrawContext
           
 

Classes in gov.nasa.worldwind.render that implement AVList
 class DrawContextImpl
           
 class Pedestal
           
 class UserFacingIcon
           
 

Uses of AVList in gov.nasa.worldwind.retrieve
 

Subinterfaces of AVList in gov.nasa.worldwind.retrieve
 interface RetrievalService
           
 interface Retriever
           
 

Classes in gov.nasa.worldwind.retrieve that implement AVList
 class BasicRetrievalService
          Performs threaded retrieval of data.
 class HTTPRetriever
           
 class URLRetriever
           
 

Uses of AVList in gov.nasa.worldwind.util
 

Subinterfaces of AVList in gov.nasa.worldwind.util
 interface NetworkStatus
           
 

Classes in gov.nasa.worldwind.util that implement AVList
 class BasicNetworkStatus
          Provides tracking of per-host network availability.
 class LevelSet
           
 class ThreadedTaskService
           
 

Methods in gov.nasa.worldwind.util that return AVList
 AVList Level.getParams()
           
 

Methods in gov.nasa.worldwind.util with parameters of type AVList
protected  String Level.validate(AVList params)
          Determines whether the constructor arguments are valid.
 

Constructors in gov.nasa.worldwind.util with parameters of type AVList
Level(AVList params)
           
LevelSet(AVList params)
           
LevelSet(AVList params, Collection<Level> levels)
           
LevelSet(Collection<Level> levels, AVList params)
           
 

Uses of AVList in gov.nasa.worldwind.view
 

Subinterfaces of AVList in gov.nasa.worldwind.view
 interface OrbitView
           
 

Classes in gov.nasa.worldwind.view that implement AVList
 class AbstractView
           
 class BasicOrbitView
           
 class FlatOrbitView
           
 

Uses of AVList in gov.nasa.worldwind.wms
 

Classes in gov.nasa.worldwind.wms that implement AVList
 class WMSTiledImageLayer
           
 

Methods in gov.nasa.worldwind.wms that return AVList
static AVList WMSTiledImageLayer.xmlStateToParams(String stateInXml)
           
 

Constructors in gov.nasa.worldwind.wms with parameters of type AVList
WMSTiledImageLayer(AVList params)
           
WMSTiledImageLayer(Capabilities caps, AVList params)
           
 


NASA World Wind