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

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

There is a newer version: 2.7
Show newest version
/**
 * @creation 22 d?c. 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.FileFormatUnique;
import org.fudaa.ctulu.fileformat.FileReadOperationAbstract;
import org.fudaa.ctulu.fileformat.FileWriteOperationAbstract;

/**
 * @author Fred Deniger
 * @version $Id: RubarDTRFileFormat.java,v 1.6 2006-11-15 09:22:53 deniger Exp $
 */
public class RubarDTRFileFormat extends FileFormatUnique {

  /**
   * construit les extensions uniquement.
   */
  public RubarDTRFileFormat() {
    super(1);
    extensions_ = new String[] { "dtr" };
    super.id_ = "RUBAR_DTR";
    super.nom_ = "Rubar dtr";
  }

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy