/*******************************
 *
 *	Filter Class
 *
 *  Version: 1.0
 *
 *	Author: 
 *	The Roundhouse
 *
 *  © The Roundhouse 2007 -
 * 	ALL RIGHTS RESERVED
 */

var Filter = new Class({
					   
	iMode: null,
	strFilterName: null,
	mxValue: null,
	
	initialize: function(iMode, strFilterName, mxValue)
	{
		this.iMode 			= iMode;
		this.strFilterName 	= strFilterName;
		this.mxValue 		= mxValue;
	},
	
	getMode: function()
	{
		return this.iMode;
	},
	
	getFilter: function()
	{
		return this.strFilterName;
	},
	
	getValue: function()
	{
		return this.mxValue;
	}
});