Skip to content

Commit

Permalink
changed times data structure to ArrayList<Boolean>
Browse files Browse the repository at this point in the history
  • Loading branch information
codingsnippets committed Mar 17, 2013
1 parent cea8e7f commit 523474d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions branch/proto/Schedule.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ public class Schedule {
//TODO: convert in to array of fields
public Integer CRN;
public String Subject;
public Integer Course_no;
public String Term;
public Integer Section;
public String Instruction_type;
Expand All @@ -19,16 +20,15 @@ public class Schedule {
public String Weekday;
public String Start_time;
public String End_time;
public ArrayList<Timeslot> Times;
public Integer Course_no;
public ArrayList<Boolean> Times;

public Schedule(){

}
/*
@param String dbhost
@param String dbuser
@param String dbpass
@param dbhost
@param dbuser
@param dbpass
*/
public void getRecord(String dbhost, String dbuser, String dbpass){
String fields = "*" ;
Expand Down

0 comments on commit 523474d

Please sign in to comment.