|
From: <be...@us...> - 2007-11-15 10:32:04
|
Revision: 251
http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=251&view=rev
Author: benoitx
Date: 2007-11-15 02:32:07 -0800 (Thu, 15 Nov 2007)
Log Message:
-----------
Feature Requests item #1832345, make the Tenor Serializable
Modified Paths:
--------------
trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/Tenor.java
trunk/src/site/changes.xml
Modified: trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/Tenor.java
===================================================================
--- trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/Tenor.java 2007-05-03 17:10:45 UTC (rev 250)
+++ trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/Tenor.java 2007-11-15 10:32:07 UTC (rev 251)
@@ -41,7 +41,8 @@
* @version $Revision$ $Date$
*
*/
-public class Tenor {
+public class Tenor implements Serializable {
+ private static final long serialVersionUID = 1L;
private int units = 0;
private TenorCode code;
Modified: trunk/src/site/changes.xml
===================================================================
--- trunk/src/site/changes.xml 2007-05-03 17:10:45 UTC (rev 250)
+++ trunk/src/site/changes.xml 2007-11-15 10:32:07 UTC (rev 251)
@@ -9,6 +9,7 @@
</properties>
<body>
<release version="1.1.0" date="in SVN" description="Maintenance">
+ <action dev="benoitx" type="add" issue="1832345" due-to="vyadh">Feature Requests item #1832345, make the Tenor Serializable</action>
<action dev="benoitx" type="add">Added 2 methods on factory to check if a calendar is registered.</action>
<action dev="marchy" type="fix">Deprecated ACT/UST and END/365 Day Count Conventions, which weren't very common. Also added a link to some documentation.</action>
<action dev="benoitx" type="add">Added method calculateTenorDates with/without a spot lag to enable calculation of a series of Tenor dates without changing the current business date in the calculator.</action>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|