
function RecordListAction(redirectPage, iconName, tooltip, actionFilter)
{
  this.redirectPage = redirectPage;
  this.image = Icons[iconName];
  this.tooltip = tooltip;
  this.actionFilter = actionFilter;
  
  this.onClick = new REvent();
}

RecordListAction.prototype.getRedirectPage = function()
{
  return this.redirectPage;
}

