/*
* Name: TableRow.java
* Package: it.kaizenteam.app.model.NorrisChart
* Location: Sources/Applicazione/main/java/it/kaizenteam/app/model/NorrisChart
* Date: 2015-05-18
* Version: v1.00
*
* History:
* =================================================================
* Version Date Programmer Changes
* =================================================================
* v1.00 2015-06-15 Carlon Chiara Approved
* =================================================================
* v0.04 2015-06-02 Pavanello Fabio Matteo Verify
* =================================================================
* v0.03 2015-05-30 Bucco Riccardo Edit
* =================================================================
* v0.02 2015-05-24 Dal Bianco Davide Verify
* =================================================================
* v0.01 2015-05-18 Moretto Alessandro Creation
* =================================================================
*
*/
package it.kaizenteam.app.model.NorrisChart;
import java.util.ArrayList;
/**
* This class represents the data of a row of a table.
*/
public class TableRow {
/**
* This attribute represents the values of a row of the table.
*/
private ArrayList<TableCell> values;
/**
* This method is the constructor of TableRow. It has as a parameter data values of the cells of the table row.
* @param values
*/
public TableRow(ArrayList<TableCell> values){
this.values=values;
}
/**
* This method has the task of returning the data of the row.
* @return data of the row
*/
public ArrayList<TableCell> getData(){
return values;
}
/**
* This method has the task to set the data of the row.
* @param value
*/
public void setData(ArrayList<TableCell> value){
this.values=values;
}
}