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; + } }