Class GroundStationDescription


  • public class GroundStationDescription
    extends java.lang.Object
    This 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.String getId()
      Gets the ground station identifier value.
      float getLatitude()
      Gets the ground station's latitude value.
      float getLongitude()
      Gets the ground station's longitude value.
      java.lang.String getName()
      Gets the ground station name value.
      void setId​(java.lang.String id)
      Sets the ground station identifier to the given value.
      void setLatitude​(float value)
      Sets the ground station's latitude to the given value.
      void setLongitude​(float value)
      Sets the ground station's longitude to the given value.
      void setName​(java.lang.String name)
      Sets the ground station name to the given value.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • 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 identifier
        name - ground statiion name
        latitude - latitude of ground station's location
        longitude - 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)