var ListData = function(data /* Object */, uid /* String */, owner /* UIComponent */, rowIndex /* int */, columnIndex /* int */)
{
	this.data = data;
	this.uid = uid;
	this.owner = owner;
	this.rowIndex = rowIndex;
	this.columnIndex = columnIndex;
};
