Skip to content
Permalink
6d0e7920c5
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
77 lines (58 sloc) 1.39 KB
/*********************************************
* 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
}