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   package fr.paris.lutece.plugins.dataviz.business;
7   
8   
9   /**
10   *
11   * @author evrardmax
12   */
13  public interface IStat
14  {
15      /**
16       * Returns the Name
17       * @return The Name
18       */
19      String getName(  );
20  
21      
22      /**
23       * Returns the Id
24       * @return The Id
25       */
26      String getId(  );
27  
28      /**
29       * Returns the GraphType
30       * @return The GraphType
31       */
32      String getGraphType(  );
33      
34      /**
35       * Sets the Name
36       * @param strName The Name
37       */
38      void setName( String strName );
39     
40      /**
41       * Sets the Id
42       * @param strId The Id
43       */
44      void setId( String strId );
45      
46      /**
47       * Sets the GraphType
48       * @param strGraphType The GraphType
49       */
50      void setGraphType( String strGraphType );
51  }