View Javadoc

1   package net.sourceforge.xmlfit.data;
2   
3   import net.sourceforge.xmlfit.data.impl.XMLDataSourceImpl;
4   
5   /**
6    * Interface of a XMLFit DataSource.
7    * 
8    * A DataSource provides a ordered collection of DataSets.
9    * 
10   * @see DataSet for the DataSet Interface
11   * @see XMLDataSourceImpl for a example implementation of a DataSource. 
12   * @see Iterable
13   */
14  public interface DataSource extends Iterable<DataSet>{
15  	
16  }