Skip to content

Commit

Permalink
runner that demos the usage of Filter and for debug
Browse files Browse the repository at this point in the history
  • Loading branch information
codingsnippets committed Mar 18, 2013
1 parent dc8274e commit 93cace9
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions branch/proto/runner.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
/**
* Author: Kevin Huang
* Date: 3/18/13 , 1:41 AM
* Copyright Reserved 2013
*/


import java.util.ArrayList;

public class runner {
public static void main(String [ ] args){

ArrayList<String> majors = Filter.getMajors();

SessionInfo newsession = new SessionInfo();

ArrayList<Schedule> schedLcd= Filter.getClasses(Term.Spring, newsession);


ArrayList<String> concentrations = Filter.getConcentrations("CS") ;
System.out.println("Done running");


}
}

0 comments on commit 93cace9

Please sign in to comment.