Skip to content
Permalink
d627169d4b
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
86 lines (66 sloc) 1.69 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
*
*****************************************************************************/
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
******************************************/
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
}