From 4bd7003b75aa6bcc6cb93063f5ed3bbd590fd3ae Mon Sep 17 00:00:00 2001 From: evanwilliams Date: Thu, 25 Mar 2021 21:09:11 -0400 Subject: [PATCH] More changes to general --- .../WaterWay/General.java | 55 +++++++++++++++++++ 1 file changed, 55 insertions(+) diff --git a/app/src/main/java/com/sf/stormwaterutilityandroid/WaterWay/General.java b/app/src/main/java/com/sf/stormwaterutilityandroid/WaterWay/General.java index dc1d03c..da1e6a5 100644 --- a/app/src/main/java/com/sf/stormwaterutilityandroid/WaterWay/General.java +++ b/app/src/main/java/com/sf/stormwaterutilityandroid/WaterWay/General.java @@ -104,4 +104,59 @@ private void setupForm() { comments = commentsValue.getValue(); } + public String getName() { + return nameOfInspector; + } + + public String getSite() { + return nameOfSite; + } + + public String getDate() { + return dateRow; + } + + public double getOutfall() { + return outfall; + } + + public double getLongitude() { + return longitude; + } + + public double getLatitude() { + return latitude; + } + + public double getInvertElevation() { + return invertElevation; + } + + public String getType() { + return type; + } + + public String getPipeSize() { + return pipeSize; + } + + public String getChannelBottomWidth() { + return channelBottomWidth; + } + + public String getReceivingWater() { + return receivingWater; + } + + public String getRoutineEvaluation() { + return routineEvaluation; + } + + public String getComplaintInvestigation() { + return complaintInvestigation; + } + + public String getComments() { + return comments; + } }