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   /**
10   * Override getResult to return result of SingleStat
11   * @return The nResult
12   */
13  public class StatSingle extends AbstractSqlStat
14  {
15      @Override
16      public Object getResult(  )
17      {
18          int nResult = StatHome.getSingleResult( getSql() );
19  
20          return nResult;
21      }
22  }