/*
* Name: LineChartDataImpl.java
* Package: it.kaizenteam.app.model.NorrisChart
* Location: Sources/Applicazione/main/java/it/kaizenteam/app/model/NorrisChart
* Date: 2015-05-22
* Version: v1.00
*
* History:
* =================================================================
* Version Date Programmer Changes
* =================================================================
* v1.00 2015-06-15 Carlon Chiara Approved
* =================================================================
* v0.04 2015-06-02 Rubin Marco Verify
* =================================================================
* v0.03 2015-05-30 Moretto Alessandro Edit
* =================================================================
* v0.02 2015-05-26 Moretto Alessandro Verify
* =================================================================
* v0.01 2015-05-22 Dal Bianco Davide Creation
* =================================================================
*
*/
package it.kaizenteam.app.model.NorrisChart;
import com.github.mikephil.charting.data.LineData;
/**
* This class represents the data in a line chart.
*/
public class LineChartDataImpl implements ChartData{
private LineData values;
/**
* This method is the constructor of LineChartDataImpl. It has as a parameter data values in the chart.
* @param values data values of the chart
*/
public LineChartDataImpl(LineData values){
this.values=values;
}
/**
* This method has the task of returning the data of the chart.
* @return the data of the chart
*/
public LineData getData(){
return values;
}
/**
* This method has the task to set the data of the chart.
* @param data data of the chart
*/
public void setData(LineData data){
this.values=data;
}
}