Project: Calendar-Application
package calendar;
 
/**
* @author James Alfei (631989) 
* @date 22/02/2012 
* @brief This class determines the structure of saved CSV files 
* This class is an abstract class that will be inherited by other classes 
* which require the "ToCSV" function 
*/
 
 
public abstract class CsvStructure { 
     
 /** This method will be called and used by classes that implement
  * CsvStructure.java 
  * @return The CSV String ready to be written to a file 
  */
 
    public abstract String ToCSV(); 
     
}