diff --git a/app/src/main/java/com/example/cosmosclient/entities/AreaInformation.java b/app/src/main/java/com/example/cosmosclient/entities/AreaInformation.java index eec5a5d..a1760c0 100644 --- a/app/src/main/java/com/example/cosmosclient/entities/AreaInformation.java +++ b/app/src/main/java/com/example/cosmosclient/entities/AreaInformation.java @@ -7,7 +7,7 @@ public class AreaInformation { private Location location = new Location(); private HashMap> feature = new HashMap<>(); - public Time lastUpdated; + private Time lastUpdated; public void setLocation(Location location){ this.location = location; @@ -16,5 +16,19 @@ return this.location; } + public void setFeature(HashMap> feature) { + this.feature = feature; + } + public HashMap> getFeature() { + return feature; + } + + public void setLastUpdated(Time lastUpdated) { + this.lastUpdated = lastUpdated; + } + public Time getLastUpdated() { + return lastUpdated; + } + }