1 /*
2 * To change this license header, choose License Headers in Project Properties.
3 * To change this template file, choose Tools | Templates
4 * and open the template in the editor.
5 */
6
7 package fr.paris.lutece.plugins.dataviz.business;
8
9 /**
10 *
11 * @author evrardmax
12 */
13 public interface ISqlStat extends IStat
14 {
15
16 /**
17 * Returns the Result
18 * @return The Result
19 */
20 Object getResult( );
21
22 /**
23 * Returns the Sql
24 * @return The Sql
25 */
26 String getSql( );
27
28 /**
29 * Sets the Result
30 * @param Result The Result
31 */
32 void setResult( Object Result );
33
34 /**
35 * Sets the Sql
36 * @param strSql The Sql
37 */
38 void setSql( String strSql );
39 }