From 84c301cd103fc85adf4b6a854bd1aaeb3e22a049 Mon Sep 17 00:00:00 2001 From: ishanashastri Date: Wed, 14 Jun 2017 16:30:18 -0400 Subject: [PATCH] Final Updated Software --- src/JavaFXGUI/EnterStudentTab.java | 12 ++---------- src/backend/Student.java | 24 ++++-------------------- src/backend/StudentList.java | 3 ++- 3 files changed, 8 insertions(+), 31 deletions(-) diff --git a/src/JavaFXGUI/EnterStudentTab.java b/src/JavaFXGUI/EnterStudentTab.java index 7a89cea..591877a 100644 --- a/src/JavaFXGUI/EnterStudentTab.java +++ b/src/JavaFXGUI/EnterStudentTab.java @@ -279,17 +279,10 @@ private void moveOn(boolean signIn, Student student){ EnterInfoTab tab3; boolean outin = false; int j = 0; - for(int i = 0;i " + t); -// time += ", " + t; -// }else{ -// System.out.println("time: " + this.time); - this.time=t; -// System.out.println("time: " + this.time + " --> " + t); -// } + this.time=t; } public String getDate(){ return date; @@ -132,15 +121,10 @@ public void setExcused(String excused) { this.excused = excused; } public void setArrTime(String arrTime) { -// if(this.arrTime.contains("None")){ - this.arrTime = arrTime; -// }else{ -// this.arrTime += ", " + arrTime; -// } -// System.out.println("time: " + this.arrTime + " --> " + arrTime); + this.arrTime = arrTime; } public String getArrTime() { - return arrTime; + return this.arrTime; } public int compareTo(Student o) { diff --git a/src/backend/StudentList.java b/src/backend/StudentList.java index 0439d37..007b92b 100644 --- a/src/backend/StudentList.java +++ b/src/backend/StudentList.java @@ -107,7 +107,8 @@ public ArrayList getIDList(){ public ArrayList getStudentList(){ return new ArrayList(nameMap.values()); } - /** + + /** * Gets size of the StudentList * @param other Student to be checked * @return Returns if Student is in the StudentList.