View Javadoc

1   package net.sourceforge.xmlfit.data.impl;
2   
3   import net.sourceforge.xmlfit.data.DataSet;
4   
5   /**
6    * NullDataSet can be used when no DataSet is initialized.
7    */
8   public class NullDataSetImpl implements DataSet {
9   
10  	/**
11  	 * Always returns null.
12  	 */
13  	public String getPropertyValue(String name) {
14  		return null;
15  	}
16  
17  }