org.unisens
Interface FileFormat

All Superinterfaces:
java.lang.Cloneable
All Known Subinterfaces:
BinFileFormat, CsvFileFormat, CustomFileFormat, XmlFileFormat

public interface FileFormat
extends java.lang.Cloneable

FileFormat is used to define which representation of Entry data is used as file format.

Author:
Joerg Ottenbacher, Radi Nedkov, Malte Kirst

Method Summary
 FileFormat clone()
           
 java.lang.String getComment()
          Gets the comment for this file format.
 java.lang.String getFileFormatName()
          Gets the name of this file format as String.
 void setComment(java.lang.String comment)
          Sets the comment for this file format.
 

Method Detail

getComment

java.lang.String getComment()
Gets the comment for this file format.

Returns:
the comment for this file format

getFileFormatName

java.lang.String getFileFormatName()
Gets the name of this file format as String.

Returns:
the name of this file format

setComment

void setComment(java.lang.String comment)
Sets the comment for this file format.

Parameters:
comment - the comment for this file format

clone

FileFormat clone()