Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
whats up
  • Loading branch information
bmr11003 authored and bmr11003 committed Feb 26, 2016
1 parent b63717c commit 6d0e792
Show file tree
Hide file tree
Showing 4 changed files with 77 additions and 0 deletions.
Binary file added Party_APP/bin/model/Party.class
Binary file not shown.
Binary file added Party_APP/bin/model/activity.class
Binary file not shown.
Binary file added Party_APP/bin/model/foodAndMenu.class
Binary file not shown.
77 changes: 77 additions & 0 deletions 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


}

0 comments on commit 6d0e792

Please sign in to comment.