/* * Name: TablePresenter.java * Package: it.kaizenteam.app.presenter * Location: Sources/Applicazione/main/java/it/kaizenteam/app/presenter * Date: 2015-05-25 * 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-26 Dal Bianco Davide Verify * ================================================================= * v0.01 2015-05-25 Moretto Alessandro Creation * ================================================================= * */ package it.kaizenteam.app.presenter; /** * TablePresenter is the interface TablePresenterImpl. */ public interface TablePresenter extends Presenter { void setChart(String id); /** * execute the code when the activity go to pause state */ void onPause(); }