Package gov.nasa.gsfc.spdf.ssc
Class GroundStationDescription
- java.lang.Object
-
- gov.nasa.gsfc.spdf.ssc.GroundStationDescription
-
public class GroundStationDescription extends java.lang.ObjectThis class represents a description of a ground station supported by the Satellite Situation Center .- Version:
- $Revision$
- Author:
- B. Harris
-
-
Constructor Summary
Constructors Constructor Description GroundStationDescription()Constructs a GroundStationDescription with a null value.GroundStationDescription(java.lang.String id, java.lang.String name, float latitude, float longitude)Constructs a GroundStationDescription with the given attribute values.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetId()Gets the ground station identifier value.floatgetLatitude()Gets the ground station's latitude value.floatgetLongitude()Gets the ground station's longitude value.java.lang.StringgetName()Gets the ground station name value.voidsetId(java.lang.String id)Sets the ground station identifier to the given value.voidsetLatitude(float value)Sets the ground station's latitude to the given value.voidsetLongitude(float value)Sets the ground station's longitude to the given value.voidsetName(java.lang.String name)Sets the ground station name to the given value.
-
-
-
Constructor Detail
-
GroundStationDescription
public GroundStationDescription()
Constructs a GroundStationDescription with a null value.
-
GroundStationDescription
public GroundStationDescription(java.lang.String id, java.lang.String name, float latitude, float longitude)Constructs a GroundStationDescription with the given attribute values.- Parameters:
id- ground statiion identifiername- ground statiion namelatitude- latitude of ground station's locationlongitude- longitude of ground station's location
-
-
Method Detail
-
setId
public void setId(java.lang.String id)
Sets the ground station identifier to the given value.- Parameters:
id- new id value- See Also:
getId()
-
getId
public java.lang.String getId()
Gets the ground station identifier value. This value is used in subsequent Web service calls to identify the ground station.- Returns:
- ground station id
- See Also:
setId(java.lang.String)
-
setName
public void setName(java.lang.String name)
Sets the ground station name to the given value.- Parameters:
name- new ground station name- See Also:
getName()
-
getName
public java.lang.String getName()
Gets the ground station name value. This value is suitable for display.- Returns:
- ground station name
- See Also:
setName(java.lang.String)
-
setLatitude
public void setLatitude(float value)
Sets the ground station's latitude to the given value.- Parameters:
value- new value- See Also:
getLatitude()
-
getLatitude
public float getLatitude()
Gets the ground station's latitude value.- Returns:
- latitude
- See Also:
setLatitude(float)
-
setLongitude
public void setLongitude(float value)
Sets the ground station's longitude to the given value.- Parameters:
value- new value- See Also:
getLongitude()
-
getLongitude
public float getLongitude()
Gets the ground station's longitude value.- Returns:
- longitude
- See Also:
setLongitude(float)
-
-