All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.fudaa.dodico.rubar.io.RubarLimnigrammeResult Maven / Gradle / Ivy

There is a newer version: 2.7
Show newest version
/**
 *  @creation     22 d?c. 2004
 *  @modification $Date: 2006-09-19 14:45:51 $
 *  @license      GNU General Public License 2
 *  @copyright    (c)1998-2001 CETMEF 2 bd Gambetta F-60231 Compiegne
 * @mail [email protected]
 */
package org.fudaa.dodico.rubar.io;

import org.fudaa.dodico.mesure.EvolutionReguliereInterface;

/**
 * @author Fred Deniger
 * @version $Id: RubarLimnigrammeResult.java,v 1.3 2006-09-19 14:45:51 deniger Exp $
 */
public interface RubarLimnigrammeResult {

  /**
   * @return le nombre de points parametrer
   */
  int getNbPoint();

  /**
   * @return le nombre de variables
   */
  int getNbVar();

  /**
   * @return le nombre de pas de temps
   */
  int getNbTimeStep();

  /**
   * @param _idxVar la variable
   * @param _nbPoint le point
   * @return l'evolution definie au point _nbPoint pour la variable _idxVar
   */
  EvolutionReguliereInterface getEvolFor(int _idxVar, int _nbPoint);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy