View Javadoc

1   /*
2    * @(#) CashFlowData.java Nov 22, 2004
3    * 
4    * Copyright (c) 2003-2005 Delft University of Technology, Jaffalaan 5, 2628 BX
5    * Delft, the Netherlands. All rights reserved.
6    * 
7    * See for project information <a href="http://www.simulation.tudelft.nl/">
8    * www.simulation.tudelft.nl </a>.
9    * 
10   * The source code and binary code of this software is proprietary information
11   * of Delft University of Technology.
12   */
13  package org.gscg.singleuser.interactionlayer.dataobjects;
14  
15  import java.io.Serializable;
16  
17  /***
18   * <p>
19   * Copyright (c) 2003-2005 Delft University of Technology, Jaffalaan 5, 2628 BX
20   * Delft, the Netherlands. All rights reserved.
21   * 
22   * See for project information <a href="http://www.simulation.tudelft.nl/">
23   * www.simulation.tudelft.nl </a>.
24   * 
25   * The source code and binary code of this software is proprietary information
26   * of Delft University of Technology.
27   * 
28   * @author <a
29   *         href="http://www.tbm.tudelft.nl/webstaf/stijnh/index.htm">Stijn-Pieter
30   *         van Houten </a>
31   * @version $Revision: 1.1 $ $Date: 2005/06/16 12:33:59 $
32   * @since 1.0.0
33   */
34  public class CashFlowData implements Serializable
35  {
36  	/*** the serial version uid */
37  	private static final long serialVersionUID = 11L;
38  
39  	/***
40  	 * constructs a new CashFlowData
41  	 */
42  	public CashFlowData()
43  	{
44  		super();
45  	}
46  }