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

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

There is a newer version: 2.7
Show newest version
/**
 * @creation 8 juin 2004
 * @modification $Date: 2006-11-15 09:22:53 $
 * @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.ctulu.fileformat.FileReadOperationAbstract;
import org.fudaa.ctulu.fileformat.FileWriteOperationAbstract;

import org.fudaa.dodico.h2d.resource.H2dResource;

/**
 * @author Fred Deniger
 * @version $Id: RubarFROFileFormat.java,v 1.12 2006-11-15 09:22:53 deniger Exp $
 */
public final class RubarDIOFileFormat extends RubarDonneesBrutesFileFormat {

  private static RubarDIOFileFormat instance_;

  @Override
  public boolean isNuage() {
    return false;
  }

  /**
   * @return l'instance a utiliser
   */
  public static RubarDIOFileFormat getInstance() {
    // pas besoin de synchronise. S'il y a 2 instances, c'est pas grave
    if (instance_ == null) {
      instance_ = new RubarDIOFileFormat();
    }
    return instance_;
  }

  /**
   * 
   */
  public RubarDIOFileFormat() {
    super();
    extensions_ = new String[] { "di0" };
    super.description_ = H2dResource.getS("Coefficient de diffusion sur grille r?guli?re");
    super.id_ = "RUBAR_FRO";
    super.nom_ = "Rubar fro";
  }

  @Override
  public FileReadOperationAbstract createReader() {
    return new RubarVF2MReader();
  }

  @Override
  public FileWriteOperationAbstract createWriter() {
    return new RubarVF2MWriter(false);
  }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy