/*
* Name: BarChartPresenter.java
* Package: it.kaizenteam.app.presenter
* Location: Sources/Applicazione/main/java/it/kaizenteam/app/presenter
* Date: 2015-05-23
* Version: v1.00
*
* History:
* =================================================================
* Version Date Programmer Changes
* =================================================================
* v1.00 2015-06-15 Carlon Chiara Approved
* =================================================================
* v0.04 2015-06-01 Bucco Riccardo Verify
* =================================================================
* v0.03 2015-05-31 Bigarella Chiara Edit
* =================================================================
* v0.02 2015-05-26 Moretto Alessandro Verify
* =================================================================
* v0.01 2015-05-23 Dal Bianco Davide Creation
* =================================================================
*
*/
package it.kaizenteam.app.presenter;
/**
* LineChartPresenter is the interface LineChartPresenterImpl
*/
public interface LineChartPresenter extends Presenter {
void setChart(String id);
/**
* execute the code when the activity go to pause state
*/
void onPause();
}