Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Entries for users and thermostats. Prelim Tests
  • Loading branch information
jyh09001 committed Feb 20, 2015
1 parent ad52904 commit b9a1081
Show file tree
Hide file tree
Showing 8 changed files with 847 additions and 0 deletions.
791 changes: 791 additions & 0 deletions Use_Cases.ucd

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions bin/.gitignore
@@ -1,2 +1,7 @@
/main/
/networking/
/server/
/testing/
/thermostat/
/user_interface/
/InputOutput/
Binary file modified bin/networking/networking.class
Binary file not shown.
Binary file modified bin/testing/Networking_Test.class
Binary file not shown.
33 changes: 33 additions & 0 deletions src/InputOutput/InputOutput.java
@@ -0,0 +1,33 @@
package InputOutput;

public class InputOutput{
//two stucts, one for users and one for therms



public static void readUserData() throws Exception{

}

public static void readTheroData() throws Exception{

}

public static void addUser() throws Exception{

}

public static void addThermo() throws Exception{

}

public static void endUserList() throws Exception{
//pending
}

public static void endThermoList(){
//pending
}


}
8 changes: 8 additions & 0 deletions src/InputOutput/package-info.java
@@ -0,0 +1,8 @@
/**
*
*/
/**
* @author giganticpanda
*
*/
package InputOutput;
5 changes: 5 additions & 0 deletions src/networking/ThermostatEntry.java
@@ -0,0 +1,5 @@
package networking;

public class ThermostatEntry {

}
5 changes: 5 additions & 0 deletions src/networking/UserEntry.java
@@ -0,0 +1,5 @@
package networking;

public class UserEntry {

}

0 comments on commit b9a1081

Please sign in to comment.