Class EntrantLocationData

java.lang.Object
com.example.rocket_launch.EntrantLocationData

public class EntrantLocationData extends Object
Class that creates an object to store entrant name and coordinates to store in a list in the Event Class for mapView implementation Author: Rachel
  • Constructor Details

    • EntrantLocationData

      public EntrantLocationData()
    • EntrantLocationData

      public EntrantLocationData(String entrantID, double latitude, double longitude)
      Constructor for Entrant location data
      Parameters:
      entrantID - Gets the ID of the entrant
      latitude - Gets the entrant's latitude
      longitude - Gets the entrant's longitude
  • Method Details

    • getEntrantID

      public String getEntrantID()
    • getEntrantLatitude

      public double getEntrantLatitude()
    • getEntrantLongitude

      public double getEntrantLongitude()
    • setEntrantID

      public void setEntrantID(String entrantID)
    • setEntrantLatitude

      public void setEntrantLatitude(double entrantLatitude)
    • setEntrantLongitude

      public void setEntrantLongitude(double entrantLongitude)