View Javadoc

1   /*
2    * Created on Aug 2, 2004
3    */
4   package org.marketchangers.defaults;
5   
6   import java.util.Date;
7   
8   import org.marketchangers.Environment;
9   
10  /***
11   * @author jniu
12   *
13   */
14  public class SimpleEnvironment implements Environment {
15  	public Date getCurrentDate() {
16  		return new Date();
17  	}
18  }