diff --git a/Party_APP/bin/model/Party.class b/Party_APP/bin/model/Party.class new file mode 100644 index 0000000..3d1ee44 Binary files /dev/null and b/Party_APP/bin/model/Party.class differ diff --git a/Party_APP/bin/model/activity.class b/Party_APP/bin/model/activity.class new file mode 100644 index 0000000..77d096b Binary files /dev/null and b/Party_APP/bin/model/activity.class differ diff --git a/Party_APP/bin/model/foodAndMenu.class b/Party_APP/bin/model/foodAndMenu.class new file mode 100644 index 0000000..dd2a049 Binary files /dev/null and b/Party_APP/bin/model/foodAndMenu.class differ diff --git a/Party_APP/src/model/Party.java b/Party_APP/src/model/Party.java new file mode 100644 index 0000000..74e569e --- /dev/null +++ b/Party_APP/src/model/Party.java @@ -0,0 +1,77 @@ +/********************************************* + * Class: Party + * Author: Brianna Rivera + * + * Revision Log: + * 2/26/16 11:14am - Started Writing Code + * + ********************************************/ + + +package model; +public class Party +{ + +//Declaring Variables + +String partyName; +String partyDescription; +String partyTime; +String partyAddress; + + +/******************************************* + *Party Constructor + ******************************************/ + public Party() + { + this.partyName = ""; + this.partyDescription = ""; + this.partyTime = ""; + this.partyAddress = ""; + } + + +//Getters + +/******************************************* + *Getter For Party Name + ******************************************/ + public String getpartyName() + { + return partyName; + } + + +/******************************************* +*Getter For Party Description +******************************************/ + public String getPartyDescription() + { + return partyDescription; + } + + +/******************************************* +*Getter For Party Time +******************************************/ + public String getPartyTime() + { + return partyTime; + } + +/******************************************* +*Getter For Party Address +******************************************/ + public String getPartyAddress() + { + return partyAddress; + } + + +//Setters + +//Other Methods + + +}