Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Added other items to party class
  • Loading branch information
bmr11003 authored and bmr11003 committed Mar 4, 2016
1 parent 6d0e792 commit 153f4fb
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 8 deletions.
Binary file modified Party_APP/bin/model/Party.class
Binary file not shown.
Binary file modified Party_APP/bin/model/activity.class
Binary file not shown.
20 changes: 14 additions & 6 deletions Party_APP/src/model/Party.java
Expand Up @@ -12,14 +12,22 @@ package model;
public class Party
{

//Declaring Variables

String partyName;
String partyDescription;
String partyTime;
String partyAddress;
//Variables

//description
String partyName;
String partyDescription;
String partyTime;
String partyAddress;
String partyDate;

//other items
foodAndMenu partyMenu;
Contact[] partyRSVPList;
activity[] partyActivityList;
ToDoList[] partyToDoList;


/*******************************************
*Party Constructor
******************************************/
Expand Down
7 changes: 5 additions & 2 deletions Party_APP/src/model/activity.java
@@ -1,11 +1,14 @@
package model;

public class activity {
public class activity
{
public String title;
public String details;
public String misc;

// Constructor
public activity(String a, String b, String c){
public activity(String a, String b, String c)
{
this.title=a;
this.details=b;
this.misc=c;
Expand Down

0 comments on commit 153f4fb

Please sign in to comment.