var answer = new Class({
	ID:		null,
	PollID:		null,
	fAnswer:		null,
	fClicked:		null,

	//CONSTRUCTOR
	initialize:	function (ID, PollID, fAnswer, fClicked)
	{
		this.ID = ID;
		this.PollID = PollID;
		this.fAnswer = fAnswer;
		this.fClicked = fClicked;
	},

	//SETTERS
	setID:	function(ID)
	{
		this.ID = ID;
	},

	setPollID:	function(PollID)
	{
		this.PollID = PollID;
	},

	setAnswer:	function(fAnswer)
	{
		this.fAnswer = fAnswer;
	},

	setClicked:	function(fClicked)
	{
		this.fClicked = fClicked;
	},


	//GETTERS
	getID:	function()
	{
		return this.ID;
	},

	getPollID:	function()
	{
		return this.PollID;
	},

	getAnswer:	function()
	{
		return this.fAnswer;
	},

	getClicked:	function()
	{
		return this.fClicked;
	}

});
