//================================= CLASS CONSTRUCTOR ========================================
function GLovListDlg()
{
//VARIABLES
//The callback used to call when a value has been selected ...
 this.eDataAccepted = null;
//The tag kept by the LOV browser ...
 this.tag = null;
// Il valore di prefiltro (stile fiere di parma)
 this.prefilter = null;
//Initializing ...
 this.initialize();
}

//====================================== STATIC ==============================================

//====================================== MEMBERS =============================================
GLovListDlg.prototype.setDefaults = function()
{
 this.eDataAccepted = null;
 this.tag = null;
 this.prefilter = null;
}

GLovListDlg.prototype.initialize = function()
{
 this.setDefaults();
}

GLovListDlg.prototype.callEDataAccepted = function(iqData)
{
 if (this.eDataAccepted != null)
  this.eDataAccepted(iqData);
}

GLovListDlg.prototype.setEDataAccepted = function(ieDataAccepted)
{
 this.eDataAccepted = ieDataAccepted;
}

GLovListDlg.prototype.getTag = function()
{
 return this.tag;
}

GLovListDlg.prototype.getPrefilter = function()
{
 return this.prefilter;
}

GLovListDlg.prototype.setTag = function(itag)
{
 this.tag = itag;
}

GLovListDlg.prototype.setPrefilter = function(ipre)
{
 this.prefilter = ipre;
}

GLovListDlg.prototype.finalize = function()
{
 this.setDefaults();
}
