Revision: 8221
http://fudaa.svn.sourceforge.net/fudaa/?rev=8221&view=rev
Author: bmarchan
Date: 2013-01-18 14:52:54 +0000 (Fri, 18 Jan 2013)
Log Message:
-----------
Modified Paths:
--------------
trunk/business/fudaa-ef/core/src/main/java/org/fudaa/dodico/ef/EfGridData.java
Modified: trunk/business/fudaa-ef/core/src/main/java/org/fudaa/dodico/ef/EfGridData.java
===================================================================
--- trunk/business/fudaa-ef/core/src/main/java/org/fudaa/dodico/ef/EfGridData.java 2013-01-18 14:49:41 UTC (rev 8220)
+++ trunk/business/fudaa-ef/core/src/main/java/org/fudaa/dodico/ef/EfGridData.java 2013-01-18 14:52:54 UTC (rev 8221)
@@ -12,6 +12,7 @@
import org.fudaa.ctulu.CtuluVariable;
/**
+ * Une interface pour une grille comportant un maillage et des data sur ce maillage.
* @author Fred Deniger
* @version $Id: EfGridData.java,v 1.8 2007-06-11 13:04:05 deniger Exp $
*/
@@ -23,6 +24,10 @@
*/
boolean isElementVar(CtuluVariable _idxVar);
+ /**
+ * @param _var La variable
+ * @return true si des datas existent pour la variable
+ */
boolean isDefined(CtuluVariable _var);
/**
@@ -31,7 +36,7 @@
* @return les valeurs (sur les noeuds ou sur les elements)
* @throws IOException
*/
- EfData getData(CtuluVariable _o, int _timeIdx) throws IOException;
+ EfData getData(CtuluVariable _var, int _timeIdx) throws IOException;
/**
* @param _var la variable demandee
@@ -40,7 +45,7 @@
* @return la valeurs au point demande
* @throws IOException
*/
- double getData(CtuluVariable _o, int _timeIdx, int _idxObjet) throws IOException;
+ double getData(CtuluVariable _var, int _timeIdx, int _idxObjet) throws IOException;
/**
* @return le maillage support
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|