text
Interface FileGetterInterface

All Known Implementing Classes:
FileGetter, JSONGetter, XMLGetter

public interface FileGetterInterface

Standard interface for FileGetter, made for possible future classes.


Method Summary
 void addColumnNames()
          Declaration of the method for adding column names to the file.
 void addData()
          Declaration of the method for adding data structure to the file.
 java.lang.String makeCSVString(java.lang.String content_)
          Declaration of the method to make a CSV String from file content
 

Method Detail

makeCSVString

java.lang.String makeCSVString(java.lang.String content_)
Declaration of the method to make a CSV String from file content

Parameters:
content_ -
Returns:

addColumnNames

void addColumnNames()
Declaration of the method for adding column names to the file.


addData

void addData()
Declaration of the method for adding data structure to the file.