source: trunk/CrossPare/src/de/ugoe/cs/cpdp/loader/CSVFolderLoader.java @ 3

Last change on this file since 3 was 2, checked in by sherbold, 10 years ago
  • initial commit
  • Property svn:mime-type set to text/plain
File size: 465 bytes
Line 
1package de.ugoe.cs.cpdp.loader;
2
3/**
4 * Implements a {@link IVersionLoader} for data from // TODO data reference
5 * Each folder contained in the defined location ({@link #setLocation(String)}) represents a project, the data files
6 * within the versions. 
7 * @author Steffen Herbold
8 */
9public class CSVFolderLoader extends AbstractFolderLoader {
10
11        @Override
12        protected SingleVersionLoader getSingleLoader() {
13                return new CSVDataLoader();
14        }
15
16       
17}
Note: See TracBrowser for help on using the repository browser.