Skip to content
Permalink
c31ff3d80a
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
92 lines (72 sloc) 1.89 KB
/*****************************************************************************
* Class: Party
* Author: Brianna Rivera
*
* Revision Log:
* 2/26/16 11:14am - Started Writing Code
* 3/4/2016 10:54am -Updated class with 'other items' see variable section
*
* To Do:
* Setters with Java Doc
*****************************************************************************/
package model;
public class Party
{
//Variables
//description
String partyName;
String partyDescription;
String partyTime;
String partyAddress;
String partyDate;
//other items
foodAndMenu partyMenu;
Contact[] partyRSVPList;
activity[] partyActivityList;
ToDoList[] partyToDoList;
/*******************************************
*Party Constructor
******************************************/
public Party()
{
this.partyName = "";
this.partyDescription = "";
this.partyTime = "";
this.partyAddress = "";
}
//Getters
/*******************************************
*Getter For Party Name
*@return returns a String name of party
******************************************/
public String getpartyName()
{
return partyName;
}
/*******************************************
*Getter For Party Description
*@return returns a String description of party
******************************************/
public String getPartyDescription()
{
return partyDescription;
}
/*******************************************
*Getter For Party Time
*@return returns a String time of party
******************************************/
public String getPartyTime()
{
return partyTime;
}
/*******************************************
*Getter For Party Address
*@return returns a String address of party
******************************************/
public String getPartyAddress()
{
return partyAddress;
}
//Setters
//Other Methods
}