View Javadoc
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   import fr.paris.lutece.util.ReferenceList;
10  
11  /**
12   * Override getResult to return result of ListStat
13   * @return The list
14   */
15  public class StatList extends AbstractSqlStat implements IStatList
16  {
17      @Override
18      public Object getResult(  )
19      {
20         
21          return getList ();
22      }
23  
24      @Override
25      public ReferenceList getList() 
26      {
27          return (ReferenceList) StatHome.getListResult ( getSql( ) );
28      }
29  }