You can subscribe to this list here.
| 2006 | Jan | Feb | Mar | Apr | May | Jun | Jul | Aug (49) | Sep (134) | Oct (33) | Nov (18) | Dec (51) | 
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2007 | Jan (50) | Feb (32) | Mar | Apr | May (1) | Jun | Jul | Aug | Sep | Oct | Nov (3) | Dec | 
| 2008 | Jan | Feb | Mar (9) | Apr | May (1) | Jun | Jul | Aug | Sep | Oct | Nov | Dec | 
| 2009 | Jan (1) | Feb (4) | Mar (8) | Apr (4) | May | Jun | Jul | Aug (2) | Sep (1) | Oct | Nov | Dec | 
| 2010 | Jan (1) | Feb | Mar (54) | Apr (21) | May (13) | Jun | Jul | Aug | Sep | Oct | Nov (9) | Dec | 
| 2011 | Jan | Feb | Mar | Apr (1) | May | Jun | Jul | Aug | Sep | Oct | Nov | Dec | 
| 2012 | Jan | Feb | Mar | Apr (1) | May | Jun | Jul | Aug (13) | Sep | Oct | Nov | Dec | 
| 
      
      
      From: <ma...@us...> - 2009-03-17 17:51:09
      
     | 
| Revision: 271
          http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=271&view=rev
Author:   marchy
Date:     2009-03-17 17:50:59 +0000 (Tue, 17 Mar 2009)
Log Message:
-----------
removed deprecated MODIFIED_PRECEEDING, and releated classes
Modified Paths:
--------------
    trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/AbstractDateCalculator.java
    trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/HolidayHandlerType.java
    trunk/datecalc-jdk/src/main/java/net/objectlab/kit/datecalc/jdk/CalendarKitCalculatorsFactory.java
    trunk/datecalc-jdk/src/main/java/net/objectlab/kit/datecalc/jdk/DateKitCalculatorsFactory.java
    trunk/datecalc-joda/src/main/java/net/objectlab/kit/datecalc/joda/LocalDateKitCalculatorsFactory.java
    trunk/datecalc-joda/src/main/java/net/objectlab/kit/datecalc/joda/YearMonthDayKitCalculatorsFactory.java
    trunk/src/site/changes.xml
Modified: trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/AbstractDateCalculator.java
===================================================================
--- trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/AbstractDateCalculator.java	2009-03-17 17:29:39 UTC (rev 270)
+++ trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/AbstractDateCalculator.java	2009-03-17 17:50:59 UTC (rev 271)
@@ -35,7 +35,6 @@
 import static net.objectlab.kit.datecalc.common.HolidayHandlerType.BACKWARD;
 import static net.objectlab.kit.datecalc.common.HolidayHandlerType.FORWARD;
 import static net.objectlab.kit.datecalc.common.HolidayHandlerType.MODIFIED_FOLLOWING;
-import static net.objectlab.kit.datecalc.common.HolidayHandlerType.MODIFIED_PRECEEDING;
 import static net.objectlab.kit.datecalc.common.HolidayHandlerType.MODIFIED_PRECEDING;
 
 import java.util.ArrayList;
@@ -309,8 +308,7 @@
     public DateCalculator<E> moveByBusinessDays(final int businessDays) {
         if (businessDays > 0
                 && holidayHandler != null
-                && (holidayHandler.getType().equals(BACKWARD) || holidayHandler.getType().equals(MODIFIED_PRECEEDING) || holidayHandler.getType().equals(
-                        MODIFIED_PRECEDING))) {
+                && (holidayHandler.getType().equals(BACKWARD) || holidayHandler.getType().equals(MODIFIED_PRECEDING))) {
             throw new IllegalArgumentException("A " + MODIFIED_PRECEDING + " or " + BACKWARD + " does not allow positive steps for moveByBusinessDays");
         } else if (businessDays < 0 && holidayHandler != null
                 && (holidayHandler.getType().equals(FORWARD) || holidayHandler.getType().equals(MODIFIED_FOLLOWING))) {
Modified: trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/HolidayHandlerType.java
===================================================================
--- trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/HolidayHandlerType.java	2009-03-17 17:29:39 UTC (rev 270)
+++ trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/HolidayHandlerType.java	2009-03-17 17:50:59 UTC (rev 271)
@@ -70,15 +70,6 @@
     public static final String MODIFIED_FOLLOWING = "modifiedFollowing";
 
     /**
-     * A modified preceeding handler will move the date backward if it falls on
-     * a non working day BUT, if the new date falls into another month, it will
-     * revert to moving forward until it finds a working day.
-     * @deprecated uses MODIFIED_PRECEDING (spelling...)
-     */
-    @Deprecated
-    public static final String MODIFIED_PRECEEDING = "modifiedPreceeding";
-
-    /**
      * A modified preceding handler will move the date backward if it falls on
      * a non working day BUT, if the new date falls into another month, it will
      * revert to moving forward until it finds a working day.
Modified: trunk/datecalc-jdk/src/main/java/net/objectlab/kit/datecalc/jdk/CalendarKitCalculatorsFactory.java
===================================================================
--- trunk/datecalc-jdk/src/main/java/net/objectlab/kit/datecalc/jdk/CalendarKitCalculatorsFactory.java	2009-03-17 17:29:39 UTC (rev 270)
+++ trunk/datecalc-jdk/src/main/java/net/objectlab/kit/datecalc/jdk/CalendarKitCalculatorsFactory.java	2009-03-17 17:50:59 UTC (rev 271)
@@ -36,7 +36,6 @@
 import static net.objectlab.kit.datecalc.common.HolidayHandlerType.FORWARD;
 import static net.objectlab.kit.datecalc.common.HolidayHandlerType.FORWARD_UNLESS_MOVING_BACK;
 import static net.objectlab.kit.datecalc.common.HolidayHandlerType.MODIFIED_FOLLOWING;
-import static net.objectlab.kit.datecalc.common.HolidayHandlerType.MODIFIED_PRECEEDING;
 import static net.objectlab.kit.datecalc.common.HolidayHandlerType.MODIFIED_PRECEDING;
 
 import java.util.Calendar;
@@ -94,8 +93,6 @@
             cal.setHolidayHandler(new CalendarBackwardHandler());
         } else if (MODIFIED_FOLLOWING.equals(holidayHandlerType)) {
             cal.setHolidayHandler(new CalendarModifiedFollowingHandler());
-        } else if (MODIFIED_PRECEEDING.equals(holidayHandlerType)) {
-            cal.setHolidayHandler(new CalendarModifiedPreceedingHandler());
         } else if (MODIFIED_PRECEDING.equals(holidayHandlerType)) {
             cal.setHolidayHandler(new CalendarModifiedPrecedingHandler());
         } else if (FORWARD_UNLESS_MOVING_BACK.equals(holidayHandlerType)) {
Modified: trunk/datecalc-jdk/src/main/java/net/objectlab/kit/datecalc/jdk/DateKitCalculatorsFactory.java
===================================================================
--- trunk/datecalc-jdk/src/main/java/net/objectlab/kit/datecalc/jdk/DateKitCalculatorsFactory.java	2009-03-17 17:29:39 UTC (rev 270)
+++ trunk/datecalc-jdk/src/main/java/net/objectlab/kit/datecalc/jdk/DateKitCalculatorsFactory.java	2009-03-17 17:50:59 UTC (rev 271)
@@ -36,7 +36,6 @@
 import static net.objectlab.kit.datecalc.common.HolidayHandlerType.FORWARD;
 import static net.objectlab.kit.datecalc.common.HolidayHandlerType.FORWARD_UNLESS_MOVING_BACK;
 import static net.objectlab.kit.datecalc.common.HolidayHandlerType.MODIFIED_FOLLOWING;
-import static net.objectlab.kit.datecalc.common.HolidayHandlerType.MODIFIED_PRECEEDING;
 import static net.objectlab.kit.datecalc.common.HolidayHandlerType.MODIFIED_PRECEDING;
 
 import java.util.Date;
@@ -93,8 +92,6 @@
             cal.setHolidayHandler(new DateBackwardHandler());
         } else if (MODIFIED_FOLLOWING.equals(holidayHandlerType)) {
             cal.setHolidayHandler(new DateModifiedFollowingHandler());
-        } else if (MODIFIED_PRECEEDING.equals(holidayHandlerType)) {
-            cal.setHolidayHandler(new DateModifiedPreceedingHandler());
         } else if (MODIFIED_PRECEDING.equals(holidayHandlerType)) {
             cal.setHolidayHandler(new DateModifiedPrecedingHandler());
         } else if (FORWARD_UNLESS_MOVING_BACK.equals(holidayHandlerType)) {
Modified: trunk/datecalc-joda/src/main/java/net/objectlab/kit/datecalc/joda/LocalDateKitCalculatorsFactory.java
===================================================================
--- trunk/datecalc-joda/src/main/java/net/objectlab/kit/datecalc/joda/LocalDateKitCalculatorsFactory.java	2009-03-17 17:29:39 UTC (rev 270)
+++ trunk/datecalc-joda/src/main/java/net/objectlab/kit/datecalc/joda/LocalDateKitCalculatorsFactory.java	2009-03-17 17:50:59 UTC (rev 271)
@@ -35,7 +35,6 @@
 import static net.objectlab.kit.datecalc.common.HolidayHandlerType.BACKWARD;
 import static net.objectlab.kit.datecalc.common.HolidayHandlerType.FORWARD_UNLESS_MOVING_BACK;
 import static net.objectlab.kit.datecalc.common.HolidayHandlerType.MODIFIED_FOLLOWING;
-import static net.objectlab.kit.datecalc.common.HolidayHandlerType.MODIFIED_PRECEEDING;
 import static net.objectlab.kit.datecalc.common.HolidayHandlerType.MODIFIED_PRECEDING;
 import net.objectlab.kit.datecalc.common.AbstractKitCalculatorsFactory;
 import net.objectlab.kit.datecalc.common.HolidayHandlerType;
@@ -95,8 +94,6 @@
             cal.setHolidayHandler(new LocalDateBackwardHandler());
         } else if (MODIFIED_FOLLOWING.equals(holidayHandlerType)) {
             cal.setHolidayHandler(new LocalDateModifiedFollowingHandler());
-        } else if (MODIFIED_PRECEEDING.equals(holidayHandlerType)) {
-            cal.setHolidayHandler(new LocalDateModifiedPreceedingHandler());
         } else if (MODIFIED_PRECEDING.equals(holidayHandlerType)) {
             cal.setHolidayHandler(new LocalDateModifiedPrecedingHandler());
         } else if (FORWARD_UNLESS_MOVING_BACK.equals(holidayHandlerType)) {
Modified: trunk/datecalc-joda/src/main/java/net/objectlab/kit/datecalc/joda/YearMonthDayKitCalculatorsFactory.java
===================================================================
--- trunk/datecalc-joda/src/main/java/net/objectlab/kit/datecalc/joda/YearMonthDayKitCalculatorsFactory.java	2009-03-17 17:29:39 UTC (rev 270)
+++ trunk/datecalc-joda/src/main/java/net/objectlab/kit/datecalc/joda/YearMonthDayKitCalculatorsFactory.java	2009-03-17 17:50:59 UTC (rev 271)
@@ -36,7 +36,6 @@
 import static net.objectlab.kit.datecalc.common.HolidayHandlerType.FORWARD;
 import static net.objectlab.kit.datecalc.common.HolidayHandlerType.FORWARD_UNLESS_MOVING_BACK;
 import static net.objectlab.kit.datecalc.common.HolidayHandlerType.MODIFIED_FOLLOWING;
-import static net.objectlab.kit.datecalc.common.HolidayHandlerType.MODIFIED_PRECEEDING;
 import static net.objectlab.kit.datecalc.common.HolidayHandlerType.MODIFIED_PRECEDING;
 import net.objectlab.kit.datecalc.common.AbstractKitCalculatorsFactory;
 import net.objectlab.kit.datecalc.common.DateCalculator;
@@ -101,8 +100,6 @@
             cal.setHolidayHandler(new YearMonthDayBackwardHandler());
         } else if (MODIFIED_FOLLOWING.equals(holidayHandlerType)) {
             cal.setHolidayHandler(new YearMonthDayModifiedFollowingHandler());
-        } else if (MODIFIED_PRECEEDING.equals(holidayHandlerType)) {
-            cal.setHolidayHandler(new YearMonthDayModifiedPreceedingHandler());
         } else if (MODIFIED_PRECEDING.equals(holidayHandlerType)) {
             cal.setHolidayHandler(new YearMonthDayModifiedPrecedingHandler());
         } else if (FORWARD_UNLESS_MOVING_BACK.equals(holidayHandlerType)) {
Modified: trunk/src/site/changes.xml
===================================================================
--- trunk/src/site/changes.xml	2009-03-17 17:29:39 UTC (rev 270)
+++ trunk/src/site/changes.xml	2009-03-17 17:50:59 UTC (rev 271)
@@ -11,8 +11,9 @@
     <release version="1.2.0" date="in SVN" description="Maintenance">
       <action dev="benoitx" type="fix" issue="1929838" due-to="Anthony Whitford">Spelling for "PRECEEDING" corrected to PRECEDING, deprecated the mispelt name.</action>
       <action dev="benoitx" type="add">Enhanced the KitCalculatorsFactory to be able to get the holidayCalendar names and unregister calendars.</action>
-      <action dev="benoitx" type="fix">The deprecated method KitCalculatorsFactory.registerHolidays(Set holidays) has been removed!</action>
-      <action dev="marchy" type="fix" issue="2389053" due-to="Didier L.">Fixed negative moves with Forward Unless Moving Back Handler</action>
+      <action dev="benoitx" type="fix">Removed the deprecated method KitCalculatorsFactory.registerHolidays(Set holidays).</action>
+      <action dev="marchy" type="fix" issue="2389053" due-to="Didier L.">Fixed negative moves with Forward Unless Moving Back Handler.</action>
+      <action dev="marchy" type="fix">Removed the deprecated constant MODIFIED_PRECEEDING, and related classes.</action>
     </release>
     <release version="1.1.0" date="2008-03-25" description="Maintenance">
       <action dev="benoitx" type="add">Changed JODA dependency to 1.5</action>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
 | 
| 
      
      
      From: <ma...@us...> - 2009-03-17 17:29:59
      
     | 
| Revision: 270
          http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=270&view=rev
Author:   marchy
Date:     2009-03-17 17:29:39 +0000 (Tue, 17 Mar 2009)
Log Message:
-----------
updated changelog for my bugfix
Modified Paths:
--------------
    trunk/src/site/changes.xml
Modified: trunk/src/site/changes.xml
===================================================================
--- trunk/src/site/changes.xml	2009-03-10 17:45:39 UTC (rev 269)
+++ trunk/src/site/changes.xml	2009-03-17 17:29:39 UTC (rev 270)
@@ -12,6 +12,7 @@
       <action dev="benoitx" type="fix" issue="1929838" due-to="Anthony Whitford">Spelling for "PRECEEDING" corrected to PRECEDING, deprecated the mispelt name.</action>
       <action dev="benoitx" type="add">Enhanced the KitCalculatorsFactory to be able to get the holidayCalendar names and unregister calendars.</action>
       <action dev="benoitx" type="fix">The deprecated method KitCalculatorsFactory.registerHolidays(Set holidays) has been removed!</action>
+      <action dev="marchy" type="fix" issue="2389053" due-to="Didier L.">Fixed negative moves with Forward Unless Moving Back Handler</action>
     </release>
     <release version="1.1.0" date="2008-03-25" description="Maintenance">
       <action dev="benoitx" type="add">Changed JODA dependency to 1.5</action>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
 | 
| 
      
      
      From: <ma...@us...> - 2009-02-25 21:00:36
      
     | 
| Revision: 268
          http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=268&view=rev
Author:   marchy
Date:     2009-02-25 21:00:30 +0000 (Wed, 25 Feb 2009)
Log Message:
-----------
Fix for bug 2389053
Modified Paths:
--------------
    trunk/datecalc-common/src/test/java/net/objectlab/kit/datecalc/common/AbstractForwardUnlessNegativeCalculatorTest.java
    trunk/datecalc-jdk/src/main/java/net/objectlab/kit/datecalc/jdk/CalendarForwardUnlessNegativeHandler.java
    trunk/datecalc-jdk/src/main/java/net/objectlab/kit/datecalc/jdk/DateForwardUnlessNegativeHandler.java
    trunk/datecalc-joda/src/main/java/net/objectlab/kit/datecalc/joda/YearMonthDayForwardUnlessNegativeHandler.java
Modified: trunk/datecalc-common/src/test/java/net/objectlab/kit/datecalc/common/AbstractForwardUnlessNegativeCalculatorTest.java
===================================================================
--- trunk/datecalc-common/src/test/java/net/objectlab/kit/datecalc/common/AbstractForwardUnlessNegativeCalculatorTest.java	2009-02-09 15:55:20 UTC (rev 267)
+++ trunk/datecalc-common/src/test/java/net/objectlab/kit/datecalc/common/AbstractForwardUnlessNegativeCalculatorTest.java	2009-02-25 21:00:30 UTC (rev 268)
@@ -41,8 +41,13 @@
 
 public abstract class AbstractForwardUnlessNegativeCalculatorTest<E> extends AbstractDateTestCase<E> {
 
+    public void testType() {
+        final DateCalculator<E> cal = newDateCalculator("bla", HolidayHandlerType.FORWARD_UNLESS_MOVING_BACK);
+        assertEquals(HolidayHandlerType.FORWARD_UNLESS_MOVING_BACK, cal.getHolidayHandlerType());
+    }
+
     public void testSimpleForwardWithWeekend() {
-        final DateCalculator<E> cal = newDateCalculator("bla", HolidayHandlerType.FORWARD);
+        final DateCalculator<E> cal = newDateCalculator("bla", HolidayHandlerType.FORWARD_UNLESS_MOVING_BACK);
         Assert.assertEquals("Name", "bla", cal.getName());
         Assert.assertEquals("Holidays size", 0, cal.getHolidayCalendar().getHolidays().size());
 
@@ -236,6 +241,15 @@
         checkDate("Add 1 week", cal.moveByDays(7), "2006-08-31");
         cal.setStartDate(newDate("2006-08-24"));
         checkDate("Move by 1W with 1 bank holiday", cal.moveByBusinessDays(7), "2006-09-05");
+        
+        cal.setStartDate(newDate("2006-08-17"));
+        checkDate("Negative move by 1 day", cal.moveByBusinessDays(-1), "2006-08-16");
+        
+        cal.setStartDate(newDate("2006-08-25"));
+        checkDate("Negative move by 4 days", cal.moveByBusinessDays(-4), "2006-08-21");
+
+        cal.setStartDate(newDate("2006-08-29"));
+        checkDate("Negative move by x days, across weekend, and bank holiday", cal.moveByBusinessDays(-5), "2006-08-21");
     }
 
     public void testMoveByTenorDays() {
Modified: trunk/datecalc-jdk/src/main/java/net/objectlab/kit/datecalc/jdk/CalendarForwardUnlessNegativeHandler.java
===================================================================
--- trunk/datecalc-jdk/src/main/java/net/objectlab/kit/datecalc/jdk/CalendarForwardUnlessNegativeHandler.java	2009-02-09 15:55:20 UTC (rev 267)
+++ trunk/datecalc-jdk/src/main/java/net/objectlab/kit/datecalc/jdk/CalendarForwardUnlessNegativeHandler.java	2009-02-25 21:00:30 UTC (rev 268)
@@ -89,7 +89,7 @@
      * @return algorithm name.
      */
     public String getType() {
-        return HolidayHandlerType.FORWARD;
+        return HolidayHandlerType.FORWARD_UNLESS_MOVING_BACK;
     }
 }
 
Modified: trunk/datecalc-jdk/src/main/java/net/objectlab/kit/datecalc/jdk/DateForwardUnlessNegativeHandler.java
===================================================================
--- trunk/datecalc-jdk/src/main/java/net/objectlab/kit/datecalc/jdk/DateForwardUnlessNegativeHandler.java	2009-02-09 15:55:20 UTC (rev 267)
+++ trunk/datecalc-jdk/src/main/java/net/objectlab/kit/datecalc/jdk/DateForwardUnlessNegativeHandler.java	2009-02-25 21:00:30 UTC (rev 268)
@@ -92,7 +92,7 @@
      * @return algorithm name.
      */
     public String getType() {
-        return HolidayHandlerType.FORWARD;
+        return HolidayHandlerType.FORWARD_UNLESS_MOVING_BACK;
     }
 }
 
Modified: trunk/datecalc-joda/src/main/java/net/objectlab/kit/datecalc/joda/YearMonthDayForwardUnlessNegativeHandler.java
===================================================================
--- trunk/datecalc-joda/src/main/java/net/objectlab/kit/datecalc/joda/YearMonthDayForwardUnlessNegativeHandler.java	2009-02-09 15:55:20 UTC (rev 267)
+++ trunk/datecalc-joda/src/main/java/net/objectlab/kit/datecalc/joda/YearMonthDayForwardUnlessNegativeHandler.java	2009-02-25 21:00:30 UTC (rev 268)
@@ -89,7 +89,7 @@
      * @return algorithm name.
      */
     public String getType() {
-        return HolidayHandlerType.FORWARD;
+        return HolidayHandlerType.FORWARD_UNLESS_MOVING_BACK;
     }
 }
 
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
 | 
| 
      
      
      From: <be...@us...> - 2009-02-09 15:55:26
      
     | 
| Revision: 267
          http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=267&view=rev
Author:   benoitx
Date:     2009-02-09 15:55:20 +0000 (Mon, 09 Feb 2009)
Log Message:
-----------
Removed the deprecated method registerHolidays( Set dates)
Modified Paths:
--------------
    trunk/datecalc-common/qalab.xml
    trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/AbstractKitCalculatorsFactory.java
    trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/KitCalculatorsFactory.java
    trunk/datecalc-jdk/qalab.xml
    trunk/datecalc-joda/qalab.xml
    trunk/src/site/changes.xml
Modified: trunk/datecalc-common/qalab.xml
===================================================================
--- trunk/datecalc-common/qalab.xml	2009-02-06 23:54:46 UTC (rev 266)
+++ trunk/datecalc-common/qalab.xml	2009-02-09 15:55:20 UTC (rev 267)
@@ -221,6 +221,14 @@
             project="objectlabkit" statvalue="43" type="cobertura-line"/>
         <summaryresult date="2009-02-06" filecount="20" module="common"
             project="objectlabkit" statvalue="30" type="cobertura-branch"/>
+        <summaryresult date="2009-02-07" filecount="21" module="common"
+            project="objectlabkit" statvalue="4" type="checkstyle"/>
+        <summaryresult date="2009-02-07" filecount="2" module="common"
+            project="objectlabkit" statvalue="2" type="findbugs"/>
+        <summaryresult date="2009-02-07" filecount="20" module="common"
+            project="objectlabkit" statvalue="44" type="cobertura-line"/>
+        <summaryresult date="2009-02-07" filecount="20" module="common"
+            project="objectlabkit" statvalue="33" type="cobertura-branch"/>
     </summary>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_package.html"
@@ -319,6 +327,9 @@
         <result date="2009-02-06" statvalue="1" type="findbugs"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
         <result date="2009-02-06" statvalue="92" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="1" type="findbugs"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-07" statvalue="92" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_WorkingWeek.java"
@@ -402,6 +413,8 @@
         <result date="2008-05-05" statvalue="90" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="95" type="cobertura-line"/>
         <result date="2009-02-06" statvalue="90" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="95" type="cobertura-line"/>
+        <result date="2009-02-07" statvalue="90" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_TenorCode.java"
@@ -477,6 +490,8 @@
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_HolidayHandlerType.java"
@@ -517,6 +532,7 @@
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_PeriodCountBasis.java"
@@ -555,6 +571,7 @@
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_StandardTenor.java"
@@ -629,6 +646,8 @@
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="93" type="cobertura-line"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="93" type="cobertura-line"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_AbstractDateCalculator.java"
@@ -646,6 +665,8 @@
         <result date="2008-05-05" statvalue="1" type="findbugs"/>
         <result date="2009-02-06" statvalue="4" type="checkstyle"/>
         <result date="2009-02-06" statvalue="1" type="findbugs"/>
+        <result date="2009-02-07" statvalue="4" type="checkstyle"/>
+        <result date="2009-02-07" statvalue="1" type="findbugs"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_DateCalculatorGeneric.java"
@@ -716,6 +737,8 @@
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_HolidayHandler.java"
@@ -781,6 +804,8 @@
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_AbstractDateCalculatorFactory.java"
@@ -877,6 +902,8 @@
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_Utils.java"
@@ -935,6 +962,8 @@
         <result date="2008-05-05" statvalue="64" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="77" type="cobertura-line"/>
         <result date="2009-02-06" statvalue="64" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="77" type="cobertura-line"/>
+        <result date="2009-02-07" statvalue="64" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_IMMPeriod.java"
@@ -966,6 +995,7 @@
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_ExcelDateUtil.java"
@@ -1021,6 +1051,8 @@
         <result date="2008-05-05" statvalue="83" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="82" type="cobertura-line"/>
         <result date="2009-02-06" statvalue="83" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="82" type="cobertura-line"/>
+        <result date="2009-02-07" statvalue="83" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_IMMDateCalculator.java"
@@ -1074,6 +1106,8 @@
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_AbstractIMMDateCalculator.java"
@@ -1103,6 +1137,7 @@
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_KitCalculatorsFactory.java"
@@ -1152,6 +1187,8 @@
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_HolidayCalendar.java"
@@ -1173,6 +1210,8 @@
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_DefaultHolidayCalendar.java"
@@ -1191,6 +1230,7 @@
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_AbstractDateCalculator.java"
Modified: trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/AbstractKitCalculatorsFactory.java
===================================================================
--- trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/AbstractKitCalculatorsFactory.java	2009-02-06 23:54:46 UTC (rev 266)
+++ trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/AbstractKitCalculatorsFactory.java	2009-02-09 15:55:20 UTC (rev 267)
@@ -55,30 +55,6 @@
     private final ConcurrentMap<String, HolidayCalendar<E>> holidays = new ConcurrentHashMap<String, HolidayCalendar<E>>();
 
     /**
-     * Use this method to register a set of holidays for a given calendar, it
-     * will replace any existing set. It won't update any existing
-     * DateCalculator as these should not be amended whilst in existence (we
-     * could otherwise get inconsistent results).
-     * 
-     * @param name
-     *            the calendar name to register these holidays under.
-     * @param holidaysSet
-     *            the set of holidays (non-working days).
-     * @deprecated use the HolidayCalendar
-     */
-    @Deprecated
-    public void registerHolidays(final String name, final Set<E> holidaysSet) {
-        if (name != null) {
-            final Set<E> hol = new HashSet<E>();
-            if (holidaysSet != null) {
-                hol.addAll(holidaysSet);
-            }
-            final DefaultHolidayCalendar<E> defaultHolidayCalendar = new DefaultHolidayCalendar<E>(hol);
-            this.holidays.put(name, new ImmutableHolidayCalendar<E>(defaultHolidayCalendar));
-        }
-    }
-
-    /**
      * Use this method to register a given calendar, it will replace any
      * existing one with the same name. An immutable copy is made so that any changes outside this class
      * will have no affect. It won't update any existing DateCalculator as these should
Modified: trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/KitCalculatorsFactory.java
===================================================================
--- trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/KitCalculatorsFactory.java	2009-02-06 23:54:46 UTC (rev 266)
+++ trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/KitCalculatorsFactory.java	2009-02-09 15:55:20 UTC (rev 267)
@@ -69,18 +69,6 @@
     DateCalculator<E> getDateCalculator(String name, String holidayHandlerType);
 
     /**
-     * Use this method to register a set of holidays for a given calendar.
-     * 
-     * @param name
-     *            the calendar name to register these holidays under.
-     * @param holidays
-     *            the set of holidays (non-working days).
-     * @deprecated should use the registerHolidays with HolidayCalendar
-     */
-    @Deprecated
-    void registerHolidays(String name, Set<E> holidays);
-
-    /**
      * Use this method to register a holidays calendar.
      * 
      * @param calendarName
Modified: trunk/datecalc-jdk/qalab.xml
===================================================================
--- trunk/datecalc-jdk/qalab.xml	2009-02-06 23:54:46 UTC (rev 266)
+++ trunk/datecalc-jdk/qalab.xml	2009-02-09 15:55:20 UTC (rev 267)
@@ -227,6 +227,14 @@
             project="objectlabkit" statvalue="82" type="cobertura-branch"/>
         <summaryresult date="2009-02-06" filecount="2" module="jdk"
             project="objectlabkit" statvalue="3" type="pmd"/>
+        <summaryresult date="2009-02-07" filecount="22" module="jdk"
+            project="objectlabkit" statvalue="4" type="checkstyle"/>
+        <summaryresult date="2009-02-07" filecount="21" module="jdk"
+            project="objectlabkit" statvalue="94" type="cobertura-line"/>
+        <summaryresult date="2009-02-07" filecount="21" module="jdk"
+            project="objectlabkit" statvalue="81" type="cobertura-branch"/>
+        <summaryresult date="2009-02-07" filecount="2" module="jdk"
+            project="objectlabkit" statvalue="3" type="pmd"/>
     </summary>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_package.html"
@@ -516,6 +524,8 @@
         <result date="2008-05-05" statvalue="78" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
         <result date="2009-02-06" statvalue="82" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-07" statvalue="78" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_DatePeriodCountCalculator.java"
@@ -578,6 +588,8 @@
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_ExcelDateUtil.java"
@@ -653,6 +665,8 @@
         <result date="2008-05-05" statvalue="75" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="92" type="cobertura-line"/>
         <result date="2009-02-06" statvalue="75" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="91" type="cobertura-line"/>
+        <result date="2009-02-07" statvalue="75" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_JdkCalendarBaseDateCalculator.java"
@@ -881,6 +895,8 @@
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_CalendarForwardHandler.java"
@@ -932,6 +948,8 @@
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_CalendarModifiedFollowingHandler.java"
@@ -983,6 +1001,8 @@
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_CalendarModifiedPreceedingHandler.java"
@@ -1038,6 +1058,9 @@
         <result date="2009-02-06" statvalue="2" type="checkstyle"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="2" type="pmd"/>
+        <result date="2009-02-07" statvalue="2" type="checkstyle"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="2" type="pmd"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_DateBackwardHandler.java"
@@ -1091,6 +1114,8 @@
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_DateForwardHandler.java"
@@ -1142,6 +1167,8 @@
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_DateModifiedFollowingHandler.java"
@@ -1193,6 +1220,8 @@
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_DateModifiedPreceedingHandler.java"
@@ -1244,6 +1273,7 @@
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_CalendarDateCalculator.java"
@@ -1293,6 +1323,8 @@
         <result date="2008-05-05" statvalue="76" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="89" type="cobertura-line"/>
         <result date="2009-02-06" statvalue="76" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="88" type="cobertura-line"/>
+        <result date="2009-02-07" statvalue="76" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_CalendarIMMDateCalculator.java"
@@ -1350,6 +1382,9 @@
         <result date="2009-02-06" statvalue="1" type="checkstyle"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
         <result date="2009-02-06" statvalue="77" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="1" type="checkstyle"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-07" statvalue="74" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_CalendarKitCalculatorsFactory.java"
@@ -1411,6 +1446,10 @@
         <result date="2009-02-06" statvalue="96" type="cobertura-line"/>
         <result date="2009-02-06" statvalue="92" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="1" type="pmd"/>
+        <result date="2009-02-07" statvalue="1" type="checkstyle"/>
+        <result date="2009-02-07" statvalue="96" type="cobertura-line"/>
+        <result date="2009-02-07" statvalue="92" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="1" type="pmd"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_DateDateCalculator.java"
@@ -1460,6 +1499,8 @@
         <result date="2008-05-05" statvalue="78" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="90" type="cobertura-line"/>
         <result date="2009-02-06" statvalue="78" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="89" type="cobertura-line"/>
+        <result date="2009-02-07" statvalue="78" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_DateIMMDateCalculator.java"
@@ -1511,6 +1552,8 @@
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_DateKitCalculatorsFactory.java"
@@ -1560,6 +1603,8 @@
         <result date="2008-05-05" statvalue="92" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="96" type="cobertura-line"/>
         <result date="2009-02-06" statvalue="92" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="96" type="cobertura-line"/>
+        <result date="2009-02-07" statvalue="92" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_CalendarForwardUnlessNegativeHandler.java"
@@ -1583,6 +1628,8 @@
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_DateForwardUnlessNegativeHandler.java"
@@ -1606,6 +1653,8 @@
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_CalendarBackwardHandler.java"
@@ -1748,6 +1797,8 @@
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_DateModifiedPrecedingHandler.java"
@@ -1757,5 +1808,7 @@
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-branch"/>
     </file>
 </qalab>
Modified: trunk/datecalc-joda/qalab.xml
===================================================================
--- trunk/datecalc-joda/qalab.xml	2009-02-06 23:54:46 UTC (rev 266)
+++ trunk/datecalc-joda/qalab.xml	2009-02-09 15:55:20 UTC (rev 267)
@@ -233,6 +233,14 @@
             project="objectlabkit" statvalue="84" type="cobertura-branch"/>
         <summaryresult date="2009-02-06" filecount="1" module="joda"
             project="objectlabkit" statvalue="1" type="pmd"/>
+        <summaryresult date="2009-02-07" filecount="24" module="joda"
+            project="objectlabkit" statvalue="2" type="checkstyle"/>
+        <summaryresult date="2009-02-07" filecount="23" module="joda"
+            project="objectlabkit" statvalue="93" type="cobertura-line"/>
+        <summaryresult date="2009-02-07" filecount="23" module="joda"
+            project="objectlabkit" statvalue="83" type="cobertura-branch"/>
+        <summaryresult date="2009-02-07" filecount="1" module="joda"
+            project="objectlabkit" statvalue="1" type="pmd"/>
     </summary>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_package.html"
@@ -402,6 +410,8 @@
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_BackwardHandler.java"
@@ -663,6 +673,8 @@
         <result date="2008-05-05" statvalue="75" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="92" type="cobertura-line"/>
         <result date="2009-02-06" statvalue="75" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="91" type="cobertura-line"/>
+        <result date="2009-02-07" statvalue="75" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_LocalDateBackwardHandler.java"
@@ -720,6 +732,8 @@
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_LocalDateCalculator.java"
@@ -778,6 +792,8 @@
         <result date="2008-05-05" statvalue="73" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="85" type="cobertura-line"/>
         <result date="2009-02-06" statvalue="73" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="85" type="cobertura-line"/>
+        <result date="2009-02-07" statvalue="73" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_LocalDateForwardHandler.java"
@@ -835,6 +851,8 @@
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_LocalDateModifiedFollowingHandler.java"
@@ -892,6 +910,8 @@
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_LocalDateModifiedPreceedingHandler.java"
@@ -947,6 +967,7 @@
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_YearMonthDayBackwardHandler.java"
@@ -1004,6 +1025,8 @@
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_YearMonthDayDateCalculator.java"
@@ -1061,6 +1084,8 @@
         <result date="2008-05-05" statvalue="82" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="90" type="cobertura-line"/>
         <result date="2009-02-06" statvalue="83" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="90" type="cobertura-line"/>
+        <result date="2009-02-07" statvalue="82" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_YearMonthDayForwardHandler.java"
@@ -1118,6 +1143,8 @@
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_YearMonthDayModifiedFollowingHandler.java"
@@ -1175,6 +1202,8 @@
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_YearMonthDayModifiedPreceedingHandler.java"
@@ -1230,6 +1259,7 @@
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_JodaExcelDateUtil.java"
@@ -1283,6 +1313,8 @@
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="90" type="cobertura-line"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="85" type="cobertura-line"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_LocalDateIMMDateCalculator.java"
@@ -1348,6 +1380,10 @@
         <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
         <result date="2009-02-06" statvalue="78" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="1" type="pmd"/>
+        <result date="2009-02-07" statvalue="2" type="checkstyle"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-07" statvalue="76" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="1" type="pmd"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_YearMonthDayIMMDateCalculator.java"
@@ -1401,6 +1437,8 @@
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_LocalDateKitCalculatorsFactory.java"
@@ -1448,6 +1486,8 @@
         <result date="2008-05-05" statvalue="92" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="96" type="cobertura-line"/>
         <result date="2009-02-06" statvalue="92" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="96" type="cobertura-line"/>
+        <result date="2009-02-07" statvalue="92" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_LocalDatePeriodCountCalculator.java"
@@ -1495,6 +1535,8 @@
         <result date="2008-05-05" statvalue="84" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
         <result date="2009-02-06" statvalue="88" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-07" statvalue="84" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_YearMonthDayKitCalculatorsFactory.java"
@@ -1542,6 +1584,8 @@
         <result date="2008-05-05" statvalue="87" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="92" type="cobertura-line"/>
         <result date="2009-02-06" statvalue="87" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="92" type="cobertura-line"/>
+        <result date="2009-02-07" statvalue="87" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_YearMonthDayPeriodCountCalculator.java"
@@ -1589,6 +1633,8 @@
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_LocalDateForwardUnlessNegativeHandler.java"
@@ -1614,6 +1660,8 @@
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_YearMonthDayForwardUnlessNegativeHandler.java"
@@ -1637,6 +1685,8 @@
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_LocalDateForwardUnlessNegativeHandler.java"
@@ -1793,6 +1843,8 @@
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_YearMonthDayModifiedPrecedingHandler.java"
@@ -1802,5 +1854,7 @@
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
         <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-07" statvalue="100" type="cobertura-branch"/>
     </file>
 </qalab>
Modified: trunk/src/site/changes.xml
===================================================================
--- trunk/src/site/changes.xml	2009-02-06 23:54:46 UTC (rev 266)
+++ trunk/src/site/changes.xml	2009-02-09 15:55:20 UTC (rev 267)
@@ -11,6 +11,7 @@
     <release version="1.2.0" date="in SVN" description="Maintenance">
       <action dev="benoitx" type="fix" issue="1929838" due-to="Anthony Whitford">Spelling for "PRECEEDING" corrected to PRECEDING, deprecated the mispelt name.</action>
       <action dev="benoitx" type="add">Enhanced the KitCalculatorsFactory to be able to get the holidayCalendar names and unregister calendars.</action>
+      <action dev="benoitx" type="fix">The deprecated method KitCalculatorsFactory.registerHolidays(Set holidays) has been removed!</action>
     </release>
     <release version="1.1.0" date="2008-03-25" description="Maintenance">
       <action dev="benoitx" type="add">Changed JODA dependency to 1.5</action>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
 | 
| 
      
      
      From: <be...@us...> - 2009-02-06 23:54:55
      
     | 
| Revision: 266
          http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=266&view=rev
Author:   benoitx
Date:     2009-02-06 23:54:46 +0000 (Fri, 06 Feb 2009)
Log Message:
-----------
spelling mistake in my own name...
Modified Paths:
--------------
    trunk/src/site/index.xml
Modified: trunk/src/site/index.xml
===================================================================
--- trunk/src/site/index.xml	2009-02-06 23:53:19 UTC (rev 265)
+++ trunk/src/site/index.xml	2009-02-06 23:54:46 UTC (rev 266)
@@ -23,7 +23,7 @@
     <section name="Quick News">
 	<p style="margin-top:10px; margin-bottom:0; padding-bottom:0; text-align:center; line-height:0"><a href="http://feeds.feedburner.com/~r/ObjectlabOpenSourceNews/~6/1"><img src="http://feeds.feedburner.com/ObjectlabOpenSourceNews.1.gif" alt="ObjectLab Open Source News" style="border:0"/></a></p><p style="margin-top:5px; padding-top:0; font-size:x-small; text-align:center"><a href="http://www.feedburner.com/fb/a/headlineanimator/install?id=829470&w=1" onclick="window.open(this.href, 'haHowto', 'width=520,height=600,toolbar=no,address=no,resizable=yes,scrollbars'); return false" target="_blank">Grab this Headline Animator</a></p>    
     <p>2009-02-xx: version 1.2.0 is out and contains a couple of changes, including the ability to see the registered calendar and unregistering calendars (useful if calendars are dynamic). 
-	More info on the changes <a href="changes-report.html">here</a>. Also... one of the author is on Twitter, follow your favourite Belgian at <a href="http://twitter.com/benooitx">http://twitter.com/benooitx</a>.</p>
+	More info on the changes <a href="changes-report.html">here</a>. Also... one of the author is on Twitter, follow your favourite Belgian at <a href="http://twitter.com/benoitx">http://twitter.com/benoitx</a>.</p>
 	
 	<p>
 	<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,124,0" width="424" height="350" id="TwitterWidget" align="middle">
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
 | 
| 
      
      
      From: <be...@us...> - 2009-02-06 23:53:23
      
     | 
| Revision: 265
          http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=265&view=rev
Author:   benoitx
Date:     2009-02-06 23:53:19 +0000 (Fri, 06 Feb 2009)
Log Message:
-----------
Added 3 methods to unregister holiday calendars.
also added a Twitter widget on main page...
Modified Paths:
--------------
    trunk/datecalc-common/.classpath
    trunk/datecalc-common/.settings/org.eclipse.jdt.core.prefs
    trunk/datecalc-common/qalab.xml
    trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/AbstractKitCalculatorsFactory.java
    trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/KitCalculatorsFactory.java
    trunk/datecalc-common/src/test/java/net/objectlab/kit/datecalc/common/AbstractDateCalculatorFactoryTest.java
    trunk/datecalc-jdk/qalab.xml
    trunk/datecalc-joda/qalab.xml
    trunk/src/site/changes.xml
    trunk/src/site/index.xml
Property Changed:
----------------
    trunk/
    trunk/datecalc-common/
Property changes on: trunk
___________________________________________________________________
Modified: svn:ignore
   - target
*.log
   + target
*.log
*.1
Property changes on: trunk/datecalc-common
___________________________________________________________________
Modified: svn:ignore
   - target
.fbwarnings
velocity.log
ydocErr.log
   + target
.fbwarnings
velocity.log
ydocErr.log
targetEclipse
Modified: trunk/datecalc-common/.classpath
===================================================================
--- trunk/datecalc-common/.classpath	2009-01-28 22:32:03 UTC (rev 264)
+++ trunk/datecalc-common/.classpath	2009-02-06 23:53:19 UTC (rev 265)
@@ -1,9 +1,8 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<classpath>
-  <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"></classpathentry>
-  <classpathentry excluding="" kind="src" path="src/main/java"></classpathentry>
-  <classpathentry output="target/test-classes" kind="src" path="src/test/java"></classpathentry>
-  <classpathentry kind="var" path="MAVEN_REPO/junit/jars/junit-3.8.2.jar"></classpathentry>
-  <classpathentry kind="output" path="target/classes"></classpathentry>
-</classpath>
\ No newline at end of file
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
+	<classpathentry kind="src" path="src/main/java"/>
+	<classpathentry kind="src" output="target/test-classes" path="src/test/java"/>
+	<classpathentry kind="var" path="MAVEN_REPO/junit/jars/junit-3.8.2.jar"/>
+	<classpathentry kind="output" path="targetEclipse/classes"/>
+</classpath>
Modified: trunk/datecalc-common/.settings/org.eclipse.jdt.core.prefs
===================================================================
--- trunk/datecalc-common/.settings/org.eclipse.jdt.core.prefs	2009-01-28 22:32:03 UTC (rev 264)
+++ trunk/datecalc-common/.settings/org.eclipse.jdt.core.prefs	2009-02-06 23:53:19 UTC (rev 265)
@@ -1,9 +1,7 @@
-
-
-
-
-
-eclipse.preferences.version=1
-org.eclipse.jdt.core.compiler.codegen.targetPlatform=5
-org.eclipse.jdt.core.compiler.compliance=5
-org.eclipse.jdt.core.compiler.source=1.5
+#Fri Feb 06 23:10:41 GMT 2009
+eclipse.preferences.version=1
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
+org.eclipse.jdt.core.compiler.compliance=1.5
+org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
+org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
+org.eclipse.jdt.core.compiler.source=1.5
Modified: trunk/datecalc-common/qalab.xml
===================================================================
--- trunk/datecalc-common/qalab.xml	2009-01-28 22:32:03 UTC (rev 264)
+++ trunk/datecalc-common/qalab.xml	2009-02-06 23:53:19 UTC (rev 265)
@@ -213,6 +213,14 @@
             project="objectlabkit" statvalue="45" type="cobertura-line"/>
         <summaryresult date="2008-05-05" filecount="20" module="common"
             project="objectlabkit" statvalue="33" type="cobertura-branch"/>
+        <summaryresult date="2009-02-06" filecount="21" module="common"
+            project="objectlabkit" statvalue="4" type="checkstyle"/>
+        <summaryresult date="2009-02-06" filecount="2" module="common"
+            project="objectlabkit" statvalue="2" type="findbugs"/>
+        <summaryresult date="2009-02-06" filecount="20" module="common"
+            project="objectlabkit" statvalue="43" type="cobertura-line"/>
+        <summaryresult date="2009-02-06" filecount="20" module="common"
+            project="objectlabkit" statvalue="30" type="cobertura-branch"/>
     </summary>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_package.html"
@@ -308,6 +316,9 @@
         <result date="2008-05-05" statvalue="1" type="findbugs"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
         <result date="2008-05-05" statvalue="92" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="1" type="findbugs"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-06" statvalue="92" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_WorkingWeek.java"
@@ -389,6 +400,8 @@
         <result date="2008-03-27" statvalue="90" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="95" type="cobertura-line"/>
         <result date="2008-05-05" statvalue="90" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="95" type="cobertura-line"/>
+        <result date="2009-02-06" statvalue="90" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_TenorCode.java"
@@ -462,6 +475,8 @@
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_HolidayHandlerType.java"
@@ -501,6 +516,7 @@
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_PeriodCountBasis.java"
@@ -538,6 +554,7 @@
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_StandardTenor.java"
@@ -610,6 +627,8 @@
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="93" type="cobertura-line"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="93" type="cobertura-line"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_AbstractDateCalculator.java"
@@ -625,6 +644,8 @@
         <result date="2008-03-27" statvalue="1" type="findbugs"/>
         <result date="2008-05-05" statvalue="4" type="checkstyle"/>
         <result date="2008-05-05" statvalue="1" type="findbugs"/>
+        <result date="2009-02-06" statvalue="4" type="checkstyle"/>
+        <result date="2009-02-06" statvalue="1" type="findbugs"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_DateCalculatorGeneric.java"
@@ -693,6 +714,8 @@
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_HolidayHandler.java"
@@ -756,6 +779,8 @@
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_AbstractDateCalculatorFactory.java"
@@ -850,6 +875,8 @@
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_Utils.java"
@@ -906,6 +933,8 @@
         <result date="2008-03-27" statvalue="64" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="77" type="cobertura-line"/>
         <result date="2008-05-05" statvalue="64" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="77" type="cobertura-line"/>
+        <result date="2009-02-06" statvalue="64" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_IMMPeriod.java"
@@ -936,6 +965,7 @@
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_ExcelDateUtil.java"
@@ -989,6 +1019,8 @@
         <result date="2008-03-27" statvalue="83" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="82" type="cobertura-line"/>
         <result date="2008-05-05" statvalue="83" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="82" type="cobertura-line"/>
+        <result date="2009-02-06" statvalue="83" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_IMMDateCalculator.java"
@@ -1040,6 +1072,8 @@
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_AbstractIMMDateCalculator.java"
@@ -1068,6 +1102,7 @@
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_KitCalculatorsFactory.java"
@@ -1115,6 +1150,8 @@
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_HolidayCalendar.java"
@@ -1134,6 +1171,8 @@
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_DefaultHolidayCalendar.java"
@@ -1151,6 +1190,7 @@
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_AbstractDateCalculator.java"
Modified: trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/AbstractKitCalculatorsFactory.java
===================================================================
--- trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/AbstractKitCalculatorsFactory.java	2009-01-28 22:32:03 UTC (rev 264)
+++ trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/AbstractKitCalculatorsFactory.java	2009-02-06 23:53:19 UTC (rev 265)
@@ -32,6 +32,7 @@
  */
 package net.objectlab.kit.datecalc.common;
 
+import java.util.Collections;
 import java.util.HashSet;
 import java.util.Set;
 import java.util.concurrent.ConcurrentHashMap;
@@ -131,6 +132,29 @@
             dc.setHolidayCalendar(holidays.get(name));
         }
     }
+
+    /**
+     * @return an immutable set of registered calendar names 
+     */
+    public Set<String> getRegisteredHolidayCalendarNames() {
+        return Collections.unmodifiableSet(holidays.keySet());
+    }
+
+    /**
+     * Unregister a given holiday calendar
+     * @param calendarName
+     *          the calendar name to unregister.
+     */
+    public void unregisterHolidayCalendar(final String calendarName) {
+        holidays.remove(calendarName);
+    }
+
+    /**
+     * unregister all holiday calendars;
+     */
+    public void unregisterAllHolidayCalendars() {
+        holidays.clear();
+    }
 }
 
 /*
Modified: trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/KitCalculatorsFactory.java
===================================================================
--- trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/KitCalculatorsFactory.java	2009-01-28 22:32:03 UTC (rev 264)
+++ trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/KitCalculatorsFactory.java	2009-02-06 23:53:19 UTC (rev 265)
@@ -66,7 +66,7 @@
      * @exception IllegalArgumentException
      *                if the type is not null or a valid value.
      */
-    DateCalculator<E> getDateCalculator(final String name, final String holidayHandlerType);
+    DateCalculator<E> getDateCalculator(String name, String holidayHandlerType);
 
     /**
      * Use this method to register a set of holidays for a given calendar.
@@ -78,28 +78,44 @@
      * @deprecated should use the registerHolidays with HolidayCalendar
      */
     @Deprecated
-    void registerHolidays(final String name, Set<E> holidays);
+    void registerHolidays(String name, Set<E> holidays);
 
     /**
      * Use this method to register a holidays calendar.
      * 
-     * @param name
+     * @param calendarName
      *            the calendar name to register these holidays under.
      * @param holidaysCalendar
      *            the holiday calendar (non-working days with boundaries).
      */
-    void registerHolidays(final String name, HolidayCalendar<E> holidaysCalendar);
+    void registerHolidays(String calendarName, HolidayCalendar<E> holidaysCalendar);
     
     /**
-     * @return true if the holiday name is registered.
+     * @return true if the holiday calendar name is registered.
      */
-    boolean isHolidayCalendarRegistered(final String name);
+    boolean isHolidayCalendarRegistered(String calendarName);
     
     /**
-     * @return an immutable Holiday Calendar that is registered.
+     * @return an immutable Holiday Calendar name that is registered.
      */
-    HolidayCalendar<E> getHolidayCalendar(final String name);
+    HolidayCalendar<E> getHolidayCalendar(String calendarName);
 
+    /**
+     * @return an immutable set of registered calendar names 
+     */
+    Set<String> getRegisteredHolidayCalendarNames();
+    
+    /**
+     * Unregister a given holiday calendar
+     * @param calendarName
+     *          the calendar name to unregister.
+     */
+    void unregisterHolidayCalendar(String calendarName);
+    
+    /**
+     * unregister all holiday calendars;
+     */
+    void unregisterAllHolidayCalendars();
     // -----------------------------------------------------------------------
     //
     //    ObjectLab, world leaders in the design and development of bespoke 
Modified: trunk/datecalc-common/src/test/java/net/objectlab/kit/datecalc/common/AbstractDateCalculatorFactoryTest.java
===================================================================
--- trunk/datecalc-common/src/test/java/net/objectlab/kit/datecalc/common/AbstractDateCalculatorFactoryTest.java	2009-01-28 22:32:03 UTC (rev 264)
+++ trunk/datecalc-common/src/test/java/net/objectlab/kit/datecalc/common/AbstractDateCalculatorFactoryTest.java	2009-02-06 23:53:19 UTC (rev 265)
@@ -66,6 +66,67 @@
         Assert.assertNotSame(cal1, cal2);
     }
 
+    public void testGetCalendarsNames() {
+        getDateCalculatorFactory().registerHolidays("UK", createUKHolidayCalendar());
+        getDateCalculatorFactory().registerHolidays("US", createUSHolidayCalendar());
+
+        {
+            final Set<String> cals = getDateCalculatorFactory().getRegisteredHolidayCalendarNames();
+            Assert.assertNotNull("cal1", cals);
+            Assert.assertEquals("cals size", 2, cals.size());
+            Assert.assertTrue("UK", cals.contains("UK"));
+            Assert.assertTrue("US", cals.contains("US"));
+            Assert.assertTrue("BLA", !cals.contains("BLA"));
+        }
+        // unregister 1 name that does not exist
+        getDateCalculatorFactory().unregisterHolidayCalendar("ZZZ");
+        {
+            final Set<String> cals = getDateCalculatorFactory().getRegisteredHolidayCalendarNames();
+            Assert.assertNotNull("cal1", cals);
+            Assert.assertEquals("cals size", 2, cals.size());
+            Assert.assertTrue("UK", cals.contains("UK"));
+            Assert.assertTrue("US", cals.contains("US"));
+            Assert.assertTrue("BLA", !cals.contains("BLA"));
+        }
+        // unregister 1 name that does exist
+        getDateCalculatorFactory().unregisterHolidayCalendar("UK");
+        {
+            final Set<String> cals = getDateCalculatorFactory().getRegisteredHolidayCalendarNames();
+            Assert.assertNotNull("cal1", cals);
+            Assert.assertEquals("cals size", 1, cals.size());
+            Assert.assertTrue("UK", !cals.contains("UK"));
+            Assert.assertTrue("US", cals.contains("US"));
+            Assert.assertTrue("BLA", !cals.contains("BLA"));
+        }
+        // unregister 1 name that does exist
+        getDateCalculatorFactory().unregisterHolidayCalendar("US");
+        {
+            final Set<String> cals = getDateCalculatorFactory().getRegisteredHolidayCalendarNames();
+            Assert.assertNotNull("cal1", cals);
+            Assert.assertEquals("cals size", 0, cals.size());
+        }
+
+        // re-register
+        getDateCalculatorFactory().registerHolidays("UK", createUKHolidayCalendar());
+        getDateCalculatorFactory().registerHolidays("US", createUSHolidayCalendar());
+        {
+            final Set<String> cals = getDateCalculatorFactory().getRegisteredHolidayCalendarNames();
+            Assert.assertNotNull("cal1", cals);
+            Assert.assertEquals("cals size", 2, cals.size());
+            Assert.assertTrue("UK", cals.contains("UK"));
+            Assert.assertTrue("US", cals.contains("US"));
+            Assert.assertTrue("BLA", !cals.contains("BLA"));
+        }
+
+        // unregister all
+        getDateCalculatorFactory().unregisterAllHolidayCalendars();
+        {
+            final Set<String> cals = getDateCalculatorFactory().getRegisteredHolidayCalendarNames();
+            Assert.assertNotNull("cal1", cals);
+            Assert.assertEquals("cals size", 0, cals.size());
+        }
+}
+
     // -----------------------------------------------------------------------
     //
     //    ObjectLab, world leaders in the design and development of bespoke 
Modified: trunk/datecalc-jdk/qalab.xml
===================================================================
--- trunk/datecalc-jdk/qalab.xml	2009-01-28 22:32:03 UTC (rev 264)
+++ trunk/datecalc-jdk/qalab.xml	2009-02-06 23:53:19 UTC (rev 265)
@@ -219,6 +219,14 @@
             project="objectlabkit" statvalue="81" type="cobertura-branch"/>
         <summaryresult date="2008-05-05" filecount="2" module="jdk"
             project="objectlabkit" statvalue="3" type="pmd"/>
+        <summaryresult date="2009-02-06" filecount="22" module="jdk"
+            project="objectlabkit" statvalue="4" type="checkstyle"/>
+        <summaryresult date="2009-02-06" filecount="21" module="jdk"
+            project="objectlabkit" statvalue="95" type="cobertura-line"/>
+        <summaryresult date="2009-02-06" filecount="21" module="jdk"
+            project="objectlabkit" statvalue="82" type="cobertura-branch"/>
+        <summaryresult date="2009-02-06" filecount="2" module="jdk"
+            project="objectlabkit" statvalue="3" type="pmd"/>
     </summary>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_package.html"
@@ -506,6 +514,8 @@
         <result date="2008-03-27" statvalue="78" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
         <result date="2008-05-05" statvalue="78" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-06" statvalue="82" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_DatePeriodCountCalculator.java"
@@ -566,6 +576,8 @@
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_ExcelDateUtil.java"
@@ -639,6 +651,8 @@
         <result date="2008-03-27" statvalue="75" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="91" type="cobertura-line"/>
         <result date="2008-05-05" statvalue="75" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="92" type="cobertura-line"/>
+        <result date="2009-02-06" statvalue="75" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_JdkCalendarBaseDateCalculator.java"
@@ -865,6 +879,8 @@
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_CalendarForwardHandler.java"
@@ -914,6 +930,8 @@
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_CalendarModifiedFollowingHandler.java"
@@ -963,6 +981,8 @@
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_CalendarModifiedPreceedingHandler.java"
@@ -1015,6 +1035,9 @@
         <result date="2008-05-05" statvalue="2" type="checkstyle"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="2" type="pmd"/>
+        <result date="2009-02-06" statvalue="2" type="checkstyle"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="2" type="pmd"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_DateBackwardHandler.java"
@@ -1066,6 +1089,8 @@
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_DateForwardHandler.java"
@@ -1115,6 +1140,8 @@
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_DateModifiedFollowingHandler.java"
@@ -1164,6 +1191,8 @@
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_DateModifiedPreceedingHandler.java"
@@ -1214,6 +1243,7 @@
         <result date="2008-03-27" statvalue="100" type="cobertura-line"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_CalendarDateCalculator.java"
@@ -1261,6 +1291,8 @@
         <result date="2008-03-27" statvalue="76" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="88" type="cobertura-line"/>
         <result date="2008-05-05" statvalue="76" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="89" type="cobertura-line"/>
+        <result date="2009-02-06" statvalue="76" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_CalendarIMMDateCalculator.java"
@@ -1315,6 +1347,9 @@
         <result date="2008-05-05" statvalue="1" type="checkstyle"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
         <result date="2008-05-05" statvalue="74" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="1" type="checkstyle"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-06" statvalue="77" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_CalendarKitCalculatorsFactory.java"
@@ -1372,6 +1407,10 @@
         <result date="2008-05-05" statvalue="96" type="cobertura-line"/>
         <result date="2008-05-05" statvalue="92" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="1" type="pmd"/>
+        <result date="2009-02-06" statvalue="1" type="checkstyle"/>
+        <result date="2009-02-06" statvalue="96" type="cobertura-line"/>
+        <result date="2009-02-06" statvalue="92" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="1" type="pmd"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_DateDateCalculator.java"
@@ -1419,6 +1458,8 @@
         <result date="2008-03-27" statvalue="78" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="89" type="cobertura-line"/>
         <result date="2008-05-05" statvalue="78" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="90" type="cobertura-line"/>
+        <result date="2009-02-06" statvalue="78" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_DateIMMDateCalculator.java"
@@ -1468,6 +1509,8 @@
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_DateKitCalculatorsFactory.java"
@@ -1515,6 +1558,8 @@
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="96" type="cobertura-line"/>
         <result date="2008-05-05" statvalue="92" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="96" type="cobertura-line"/>
+        <result date="2009-02-06" statvalue="92" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_CalendarForwardUnlessNegativeHandler.java"
@@ -1536,6 +1581,8 @@
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_DateForwardUnlessNegativeHandler.java"
@@ -1557,6 +1604,8 @@
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_CalendarBackwardHandler.java"
@@ -1697,6 +1746,8 @@
         path="net/objectlab/kit/datecalc/jdk/CalendarModifiedPrecedingHandler.java" project="objectlabkit">
         <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_DateModifiedPrecedingHandler.java"
@@ -1704,5 +1755,7 @@
         path="net/objectlab/kit/datecalc/jdk/DateModifiedPrecedingHandler.java" project="objectlabkit">
         <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
     </file>
 </qalab>
Modified: trunk/datecalc-joda/qalab.xml
===================================================================
--- trunk/datecalc-joda/qalab.xml	2009-01-28 22:32:03 UTC (rev 264)
+++ trunk/datecalc-joda/qalab.xml	2009-02-06 23:53:19 UTC (rev 265)
@@ -225,6 +225,14 @@
             project="objectlabkit" statvalue="83" type="cobertura-branch"/>
         <summaryresult date="2008-05-05" filecount="1" module="joda"
             project="objectlabkit" statvalue="1" type="pmd"/>
+        <summaryresult date="2009-02-06" filecount="24" module="joda"
+            project="objectlabkit" statvalue="2" type="checkstyle"/>
+        <summaryresult date="2009-02-06" filecount="23" module="joda"
+            project="objectlabkit" statvalue="94" type="cobertura-line"/>
+        <summaryresult date="2009-02-06" filecount="23" module="joda"
+            project="objectlabkit" statvalue="84" type="cobertura-branch"/>
+        <summaryresult date="2009-02-06" filecount="1" module="joda"
+            project="objectlabkit" statvalue="1" type="pmd"/>
     </summary>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_package.html"
@@ -392,6 +400,8 @@
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_BackwardHandler.java"
@@ -651,6 +661,8 @@
         <result date="2008-03-27" statvalue="75" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="91" type="cobertura-line"/>
         <result date="2008-05-05" statvalue="75" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="92" type="cobertura-line"/>
+        <result date="2009-02-06" statvalue="75" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_LocalDateBackwardHandler.java"
@@ -706,6 +718,8 @@
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_LocalDateCalculator.java"
@@ -762,6 +776,8 @@
         <result date="2008-03-27" statvalue="73" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="85" type="cobertura-line"/>
         <result date="2008-05-05" statvalue="73" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="85" type="cobertura-line"/>
+        <result date="2009-02-06" statvalue="73" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_LocalDateForwardHandler.java"
@@ -817,6 +833,8 @@
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_LocalDateModifiedFollowingHandler.java"
@@ -872,6 +890,8 @@
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_LocalDateModifiedPreceedingHandler.java"
@@ -926,6 +946,7 @@
         <result date="2008-03-27" statvalue="100" type="cobertura-line"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_YearMonthDayBackwardHandler.java"
@@ -981,6 +1002,8 @@
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_YearMonthDayDateCalculator.java"
@@ -1036,6 +1059,8 @@
         <result date="2008-03-27" statvalue="82" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="90" type="cobertura-line"/>
         <result date="2008-05-05" statvalue="82" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="90" type="cobertura-line"/>
+        <result date="2009-02-06" statvalue="83" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_YearMonthDayForwardHandler.java"
@@ -1091,6 +1116,8 @@
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_YearMonthDayModifiedFollowingHandler.java"
@@ -1146,6 +1173,8 @@
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_YearMonthDayModifiedPreceedingHandler.java"
@@ -1200,6 +1229,7 @@
         <result date="2008-03-27" statvalue="100" type="cobertura-line"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_JodaExcelDateUtil.java"
@@ -1251,6 +1281,8 @@
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="85" type="cobertura-line"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="90" type="cobertura-line"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_LocalDateIMMDateCalculator.java"
@@ -1312,6 +1344,10 @@
         <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
         <result date="2008-05-05" statvalue="76" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="1" type="pmd"/>
+        <result date="2009-02-06" statvalue="2" type="checkstyle"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-06" statvalue="78" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="1" type="pmd"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_YearMonthDayIMMDateCalculator.java"
@@ -1363,6 +1399,8 @@
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_LocalDateKitCalculatorsFactory.java"
@@ -1408,6 +1446,8 @@
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="96" type="cobertura-line"/>
         <result date="2008-05-05" statvalue="92" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="96" type="cobertura-line"/>
+        <result date="2009-02-06" statvalue="92" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_LocalDatePeriodCountCalculator.java"
@@ -1453,6 +1493,8 @@
         <result date="2008-03-27" statvalue="84" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
         <result date="2008-05-05" statvalue="84" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-06" statvalue="88" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_YearMonthDayKitCalculatorsFactory.java"
@@ -1498,6 +1540,8 @@
         <result date="2008-03-27" statvalue="92" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="92" type="cobertura-line"/>
         <result date="2008-05-05" statvalue="87" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="92" type="cobertura-line"/>
+        <result date="2009-02-06" statvalue="87" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_YearMonthDayPeriodCountCalculator.java"
@@ -1543,6 +1587,8 @@
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_LocalDateForwardUnlessNegativeHandler.java"
@@ -1566,6 +1612,8 @@
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_YearMonthDayForwardUnlessNegativeHandler.java"
@@ -1587,6 +1635,8 @@
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_LocalDateForwardUnlessNegativeHandler.java"
@@ -1741,6 +1791,8 @@
         path="net/objectlab/kit/datecalc/joda/LocalDateModifiedPrecedingHandler.java" project="objectlabkit">
         <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_YearMonthDayModifiedPrecedingHandler.java"
@@ -1748,5 +1800,7 @@
         path="net/objectlab/kit/datecalc/joda/YearMonthDayModifiedPrecedingHandler.java" project="objectlabkit">
         <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
         <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-line"/>
+        <result date="2009-02-06" statvalue="100" type="cobertura-branch"/>
     </file>
 </qalab>
Modified: trunk/src/site/changes.xml
===================================================================
--- trunk/src/site/changes.xml	2009-01-28 22:32:03 UTC (rev 264)
+++ trunk/src/site/changes.xml	2009-02-06 23:53:19 UTC (rev 265)
@@ -10,6 +10,7 @@
   <body>
     <release version="1.2.0" date="in SVN" description="Maintenance">
       <action dev="benoitx" type="fix" issue="1929838" due-to="Anthony Whitford">Spelling for "PRECEEDING" corrected to PRECEDING, deprecated the mispelt name.</action>
+      <action dev="benoitx" type="add">Enhanced the KitCalculatorsFactory to be able to get the holidayCalendar names and unregister calendars.</action>
     </release>
     <release version="1.1.0" date="2008-03-25" description="Maintenance">
       <action dev="benoitx" type="add">Changed JODA dependency to 1.5</action>
Modified: trunk/src/site/index.xml
===================================================================
--- trunk/src/site/index.xml	2009-01-28 22:32:03 UTC (rev 264)
+++ trunk/src/site/index.xml	2009-02-06 23:53:19 UTC (rev 265)
@@ -22,6 +22,24 @@
     <!-- The body of the document contains a number of sections -->
     <section name="Quick News">
 	<p style="margin-top:10px; margin-bottom:0; padding-bottom:0; text-align:center; line-height:0"><a href="http://feeds.feedburner.com/~r/ObjectlabOpenSourceNews/~6/1"><img src="http://feeds.feedburner.com/ObjectlabOpenSourceNews.1.gif" alt="ObjectLab Open Source News" style="border:0"/></a></p><p style="margin-top:5px; padding-top:0; font-size:x-small; text-align:center"><a href="http://www.feedburner.com/fb/a/headlineanimator/install?id=829470&w=1" onclick="window.open(this.href, 'haHowto', 'width=520,height=600,toolbar=no,address=no,resizable=yes,scrollbars'); return false" target="_blank">Grab this Headline Animator</a></p>    
+    <p>2009-02-xx: version 1.2.0 is out and contains a couple of changes, including the ability to see the registered calendar and unregistering calendars (useful if calendars are dynamic). 
+	More info on the changes <a href="changes-report.html">here</a>. Also... one of the author is on Twitter, follow your favourite Belgian at <a href="http://twitter.com/benooitx">http://twitter.com/benooitx</a>.</p>
+	
+	<p>
+	<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,124,0" width="424" height="350" id="TwitterWidget" align="middle">
+		<param name="allowScriptAccess" value="sameDomain" />
+		<param name="allowFullScreen" value="false" />
+		<param name="movie" value="http://static.twitter.com/flash/widgets/profile/TwitterWidget.swf" />
+		<param name="quality" value="high" />
+		<param name="bgcolor" value="#000000" />
+		<param name="FlashVars" value="userID=18722145&styleURL=http://static.twitter.com/flash/widgets/profile/velvetica.xml"/>
+		<embed src="http://static.twitter.com/flash/widgets/profile/TwitterWidget.swf" quality="high" bgcolor="#000000" width="424" 
+		height="350" name="TwitterWidget" align="middle" allowScriptAccess="sameDomain" allowFullScreen="false" 
+		type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" 
+		FlashVars="userID=18722145&styleURL=http://static.twitter.com/flash/widgets/profile/velvetica.xml"/>
+	</object>
+	</p>
+
     <p>2007-01-xx: version 1.1.0 is out and contains a couple of changes, a new HolidayHandler and the ability to define a valid range for the holiday (and
     if the calculation is beyond that range, an exception is thrown).  This is done via HolidayCalendar which should replace the simple Set<E> for holidays.
     More info on the changes <a href="changes-report.html">here</a>.</p>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
 | 
| 
      
      
      From: <be...@us...> - 2009-01-28 22:32:11
      
     | 
| Revision: 264
          http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=264&view=rev
Author:   benoitx
Date:     2009-01-28 22:32:03 +0000 (Wed, 28 Jan 2009)
Log Message:
-----------
Updating stats.
Modified Paths:
--------------
    trunk/datecalc-common/qalab.xml
    trunk/datecalc-jdk/qalab.xml
    trunk/datecalc-joda/qalab.xml
    trunk/statsvn.bat
Modified: trunk/datecalc-common/qalab.xml
===================================================================
--- trunk/datecalc-common/qalab.xml	2008-05-05 16:37:50 UTC (rev 263)
+++ trunk/datecalc-common/qalab.xml	2009-01-28 22:32:03 UTC (rev 264)
@@ -205,6 +205,14 @@
             project="objectlabkit" statvalue="45" type="cobertura-line"/>
         <summaryresult date="2008-03-27" filecount="20" module="common"
             project="objectlabkit" statvalue="33" type="cobertura-branch"/>
+        <summaryresult date="2008-05-05" filecount="21" module="common"
+            project="objectlabkit" statvalue="4" type="checkstyle"/>
+        <summaryresult date="2008-05-05" filecount="2" module="common"
+            project="objectlabkit" statvalue="2" type="findbugs"/>
+        <summaryresult date="2008-05-05" filecount="20" module="common"
+            project="objectlabkit" statvalue="45" type="cobertura-line"/>
+        <summaryresult date="2008-05-05" filecount="20" module="common"
+            project="objectlabkit" statvalue="33" type="cobertura-branch"/>
     </summary>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_package.html"
@@ -297,6 +305,9 @@
         <result date="2008-03-27" statvalue="1" type="findbugs"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-line"/>
         <result date="2008-03-27" statvalue="92" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="1" type="findbugs"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
+        <result date="2008-05-05" statvalue="92" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_WorkingWeek.java"
@@ -376,6 +387,8 @@
         <result date="2008-03-24" statvalue="90" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="95" type="cobertura-line"/>
         <result date="2008-03-27" statvalue="90" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="95" type="cobertura-line"/>
+        <result date="2008-05-05" statvalue="90" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_TenorCode.java"
@@ -447,6 +460,8 @@
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-line"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_HolidayHandlerType.java"
@@ -485,6 +500,7 @@
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_PeriodCountBasis.java"
@@ -521,6 +537,7 @@
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_StandardTenor.java"
@@ -591,6 +608,8 @@
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="93" type="cobertura-line"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="93" type="cobertura-line"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_AbstractDateCalculator.java"
@@ -604,6 +623,8 @@
         <result date="2008-03-24" statvalue="1" type="findbugs"/>
         <result date="2008-03-27" statvalue="1" type="checkstyle"/>
         <result date="2008-03-27" statvalue="1" type="findbugs"/>
+        <result date="2008-05-05" statvalue="4" type="checkstyle"/>
+        <result date="2008-05-05" statvalue="1" type="findbugs"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_DateCalculatorGeneric.java"
@@ -670,6 +691,8 @@
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-line"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_HolidayHandler.java"
@@ -731,6 +754,8 @@
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-line"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_AbstractDateCalculatorFactory.java"
@@ -823,6 +848,8 @@
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-line"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_Utils.java"
@@ -877,6 +904,8 @@
         <result date="2008-03-24" statvalue="64" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="77" type="cobertura-line"/>
         <result date="2008-03-27" statvalue="64" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="77" type="cobertura-line"/>
+        <result date="2008-05-05" statvalue="64" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_IMMPeriod.java"
@@ -906,6 +935,7 @@
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_ExcelDateUtil.java"
@@ -957,6 +987,8 @@
         <result date="2008-03-24" statvalue="83" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="82" type="cobertura-line"/>
         <result date="2008-03-27" statvalue="83" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="82" type="cobertura-line"/>
+        <result date="2008-05-05" statvalue="83" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_IMMDateCalculator.java"
@@ -1006,6 +1038,8 @@
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-line"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_AbstractIMMDateCalculator.java"
@@ -1033,6 +1067,7 @@
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_KitCalculatorsFactory.java"
@@ -1078,6 +1113,8 @@
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-line"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_HolidayCalendar.java"
@@ -1095,6 +1132,8 @@
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-line"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_DefaultHolidayCalendar.java"
@@ -1111,6 +1150,7 @@
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_AbstractDateCalculator.java"
Modified: trunk/datecalc-jdk/qalab.xml
===================================================================
--- trunk/datecalc-jdk/qalab.xml	2008-05-05 16:37:50 UTC (rev 263)
+++ trunk/datecalc-jdk/qalab.xml	2009-01-28 22:32:03 UTC (rev 264)
@@ -211,6 +211,14 @@
             project="objectlabkit" statvalue="82" type="cobertura-branch"/>
         <summaryresult date="2008-03-27" filecount="1" module="jdk"
             project="objectlabkit" statvalue="1" type="pmd"/>
+        <summaryresult date="2008-05-05" filecount="22" module="jdk"
+            project="objectlabkit" statvalue="4" type="checkstyle"/>
+        <summaryresult date="2008-05-05" filecount="21" module="jdk"
+            project="objectlabkit" statvalue="94" type="cobertura-line"/>
+        <summaryresult date="2008-05-05" filecount="21" module="jdk"
+            project="objectlabkit" statvalue="81" type="cobertura-branch"/>
+        <summaryresult date="2008-05-05" filecount="2" module="jdk"
+            project="objectlabkit" statvalue="3" type="pmd"/>
     </summary>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_package.html"
@@ -496,6 +504,8 @@
         <result date="2008-03-24" statvalue="78" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-line"/>
         <result date="2008-03-27" statvalue="78" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
+        <result date="2008-05-05" statvalue="78" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_DatePeriodCountCalculator.java"
@@ -554,6 +564,8 @@
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-line"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_ExcelDateUtil.java"
@@ -625,6 +637,8 @@
         <result date="2008-03-24" statvalue="75" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="91" type="cobertura-line"/>
         <result date="2008-03-27" statvalue="75" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="91" type="cobertura-line"/>
+        <result date="2008-05-05" statvalue="75" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_JdkCalendarBaseDateCalculator.java"
@@ -849,6 +863,8 @@
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-line"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_CalendarForwardHandler.java"
@@ -896,6 +912,8 @@
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-line"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_CalendarModifiedFollowingHandler.java"
@@ -943,6 +961,8 @@
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-line"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_CalendarModifiedPreceedingHandler.java"
@@ -992,6 +1012,9 @@
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-line"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="2" type="checkstyle"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="2" type="pmd"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_DateBackwardHandler.java"
@@ -1041,6 +1064,8 @@
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-line"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_DateForwardHandler.java"
@@ -1088,6 +1113,8 @@
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-line"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_DateModifiedFollowingHandler.java"
@@ -1135,6 +1162,8 @@
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-line"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_DateModifiedPreceedingHandler.java"
@@ -1184,6 +1213,7 @@
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-line"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_CalendarDateCalculator.java"
@@ -1229,6 +1259,8 @@
         <result date="2008-03-24" statvalue="76" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="88" type="cobertura-line"/>
         <result date="2008-03-27" statvalue="76" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="88" type="cobertura-line"/>
+        <result date="2008-05-05" statvalue="76" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_CalendarIMMDateCalculator.java"
@@ -1280,6 +1312,9 @@
         <result date="2008-03-27" statvalue="1" type="checkstyle"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-line"/>
         <result date="2008-03-27" statvalue="74" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="1" type="checkstyle"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
+        <result date="2008-05-05" statvalue="74" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_CalendarKitCalculatorsFactory.java"
@@ -1333,6 +1368,10 @@
         <result date="2008-03-27" statvalue="100" type="cobertura-line"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="1" type="pmd"/>
+        <result date="2008-05-05" statvalue="1" type="checkstyle"/>
+        <result date="2008-05-05" statvalue="96" type="cobertura-line"/>
+        <result date="2008-05-05" statvalue="92" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="1" type="pmd"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_DateDateCalculator.java"
@@ -1378,6 +1417,8 @@
         <result date="2008-03-24" statvalue="78" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="89" type="cobertura-line"/>
         <result date="2008-03-27" statvalue="78" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="89" type="cobertura-line"/>
+        <result date="2008-05-05" statvalue="78" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_DateIMMDateCalculator.java"
@@ -1425,6 +1466,8 @@
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-line"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_DateKitCalculatorsFactory.java"
@@ -1470,6 +1513,8 @@
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-line"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="96" type="cobertura-line"/>
+        <result date="2008-05-05" statvalue="92" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_CalendarForwardUnlessNegativeHandler.java"
@@ -1489,6 +1534,8 @@
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-line"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_DateForwardUnlessNegativeHandler.java"
@@ -1508,6 +1555,8 @@
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-line"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_CalendarBackwardHandler.java"
@@ -1642,4 +1691,18 @@
         <result date="2007-01-04" statvalue="91" type="cobertura-line"/>
         <result date="2007-01-04" statvalue="100" type="cobertura-branch"/>
     </file>
+    <file
+        id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_CalendarModifiedPrecedingHandler.java"
+        module="jdk"
+        path="net/objectlab/kit/datecalc/jdk/CalendarModifiedPrecedingHandler.java" project="objectlabkit">
+        <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
+    </file>
+    <file
+        id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_DateModifiedPrecedingHandler.java"
+        module="jdk"
+        path="net/objectlab/kit/datecalc/jdk/DateModifiedPrecedingHandler.java" project="objectlabkit">
+        <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
+    </file>
 </qalab>
Modified: trunk/datecalc-joda/qalab.xml
===================================================================
--- trunk/datecalc-joda/qalab.xml	2008-05-05 16:37:50 UTC (rev 263)
+++ trunk/datecalc-joda/qalab.xml	2009-01-28 22:32:03 UTC (rev 264)
@@ -217,6 +217,14 @@
             project="objectlabkit" statvalue="84" type="cobertura-branch"/>
         <summaryresult date="2008-03-27" filecount="1" module="joda"
             project="objectlabkit" statvalue="1" type="pmd"/>
+        <summaryresult date="2008-05-05" filecount="24" module="joda"
+            project="objectlabkit" statvalue="2" type="checkstyle"/>
+        <summaryresult date="2008-05-05" filecount="23" module="joda"
+            project="objectlabkit" statvalue="93" type="cobertura-line"/>
+        <summaryresult date="2008-05-05" filecount="23" module="joda"
+            project="objectlabkit" statvalue="83" type="cobertura-branch"/>
+        <summaryresult date="2008-05-05" filecount="1" module="joda"
+            project="objectlabkit" statvalue="1" type="pmd"/>
     </summary>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_package.html"
@@ -382,6 +390,8 @@
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-line"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_BackwardHandler.java"
@@ -639,6 +649,8 @@
         <result date="2008-03-24" statvalue="75" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="91" type="cobertura-line"/>
         <result date="2008-03-27" statvalue="75" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="91" type="cobertura-line"/>
+        <result date="2008-05-05" statvalue="75" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_LocalDateBackwardHandler.java"
@@ -692,6 +704,8 @@
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-line"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_LocalDateCalculator.java"
@@ -746,6 +760,8 @@
         <result date="2008-03-24" statvalue="73" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="85" type="cobertura-line"/>
         <result date="2008-03-27" statvalue="73" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="85" type="cobertura-line"/>
+        <result date="2008-05-05" statvalue="73" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_LocalDateForwardHandler.java"
@@ -799,6 +815,8 @@
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-line"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_LocalDateModifiedFollowingHandler.java"
@@ -852,6 +870,8 @@
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-line"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_LocalDateModifiedPreceedingHandler.java"
@@ -905,6 +925,7 @@
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-line"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_YearMonthDayBackwardHandler.java"
@@ -958,6 +979,8 @@
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-line"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_YearMonthDayDateCalculator.java"
@@ -1011,6 +1034,8 @@
         <result date="2008-03-24" statvalue="82" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="90" type="cobertura-line"/>
         <result date="2008-03-27" statvalue="82" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="90" type="cobertura-line"/>
+        <result date="2008-05-05" statvalue="82" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_YearMonthDayForwardHandler.java"
@@ -1064,6 +1089,8 @@
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-line"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_YearMonthDayModifiedFollowingHandler.java"
@@ -1117,6 +1144,8 @@
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-line"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_YearMonthDayModifiedPreceedingHandler.java"
@@ -1170,6 +1199,7 @@
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-line"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_JodaExcelDateUtil.java"
@@ -1219,6 +1249,8 @@
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="85" type="cobertura-line"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="85" type="cobertura-line"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_LocalDateIMMDateCalculator.java"
@@ -1276,6 +1308,10 @@
         <result date="2008-03-27" statvalue="100" type="cobertura-line"/>
         <result date="2008-03-27" statvalue="76" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="1" type="pmd"/>
+        <result date="2008-05-05" statvalue="2" type="checkstyle"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
+        <result date="2008-05-05" statvalue="76" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="1" type="pmd"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_YearMonthDayIMMDateCalculator.java"
@@ -1325,6 +1361,8 @@
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-line"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_LocalDateKitCalculatorsFactory.java"
@@ -1368,6 +1406,8 @@
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-line"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="96" type="cobertura-line"/>
+        <result date="2008-05-05" statvalue="92" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_LocalDatePeriodCountCalculator.java"
@@ -1411,6 +1451,8 @@
         <result date="2008-03-24" statvalue="84" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-line"/>
         <result date="2008-03-27" statvalue="84" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
+        <result date="2008-05-05" statvalue="84" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_YearMonthDayKitCalculatorsFactory.java"
@@ -1454,6 +1496,8 @@
         <result date="2008-03-24" statvalue="92" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="96" type="cobertura-line"/>
         <result date="2008-03-27" statvalue="92" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="92" type="cobertura-line"/>
+        <result date="2008-05-05" statvalue="87" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_YearMonthDayPeriodCountCalculator.java"
@@ -1497,6 +1541,8 @@
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-line"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_LocalDateForwardUnlessNegativeHandler.java"
@@ -1518,6 +1564,8 @@
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-line"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_YearMonthDayForwardUnlessNegativeHandler.java"
@@ -1537,6 +1585,8 @@
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-line"/>
         <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_LocalDateForwardUnlessNegativeHandler.java"
@@ -1685,4 +1735,18 @@
         <result date="2007-01-04" statvalue="100" type="cobertura-line"/>
         <result date="2007-01-04" statvalue="100" type="cobertura-branch"/>
     </file>
+    <file
+        id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_LocalDateModifiedPrecedingHandler.java"
+        module="joda"
+        path="net/objectlab/kit/datecalc/joda/LocalDateModifiedPrecedingHandler.java" project="objectlabkit">
+        <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
+    </file>
+    <file
+        id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_YearMonthDayModifiedPrecedingHandler.java"
+        module="joda"
+        path="net/objectlab/kit/datecalc/joda/YearMonthDayModifiedPrecedingHandler.java" project="objectlabkit">
+        <result date="2008-05-05" statvalue="100" type="cobertura-line"/>
+        <result date="2008-05-05" statvalue="100" type="cobertura-branch"/>
+    </file>
 </qalab>
Modified: trunk/statsvn.bat
===================================================================
--- trunk/statsvn.bat	2008-05-05 16:37:50 UTC (rev 263)
+++ trunk/statsvn.bat	2009-01-28 22:32:03 UTC (rev 264)
@@ -1,3 +1,3 @@
 svn log -v --xml https://objectlabkit.svn.sourceforge.net/svnroot/objectlabkit/ > svn.log
 rem mkdir src\site\statsvn
-java -jar c:\java\statsvn\statsvn.jar -xdoc -verbose -output-dir src\site\statsvn -xml -tags "^1.0.1|^1.1.0|^1.2.0" -title ObjectLabKit -exclude "**/qalab.xml" -viewvc http://svn.sourceforge.net/viewvc/objectlabkit/trunk ./svn.log .
\ No newline at end of file
+java -jar c:\java\statsvn\statsvn.jar -xdoc -verbose -output-dir src\site\statsvn -tags "^1.0.1|^1.1.0|^1.2.0" -title ObjectLabKit -exclude "**/qalab.xml" -viewvc http://svn.sourceforge.net/viewvc/objectlabkit/trunk ./svn.log .
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
 | 
| 
      
      
      From: <be...@us...> - 2008-05-05 16:37:49
      
     | 
| Revision: 263
          http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=263&view=rev
Author:   benoitx
Date:     2008-05-05 09:37:50 -0700 (Mon, 05 May 2008)
Log Message:
-----------
Fix http://sourceforge.net/tracker/index.php?func=detail&aid=1929838&group_id=175139&atid=872033
spelling mistake for MODIFIED_PRECEEDING
Modified Paths:
--------------
    trunk/common-build/project.xml
    trunk/datecalc-common/.classpath
    trunk/datecalc-common/.project
    trunk/datecalc-common/.settings/org.eclipse.jdt.core.prefs
    trunk/datecalc-common/qalab.xml
    trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/AbstractDateCalculator.java
    trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/DateCalculator.java
    trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/HolidayHandlerType.java
    trunk/datecalc-common/src/test/java/net/objectlab/kit/datecalc/common/AbstractDateCalculatorCombinationTest.java
    trunk/datecalc-common/src/test/java/net/objectlab/kit/datecalc/common/AbstractDateCalculatorFactoryTest.java
    trunk/datecalc-common/src/test/java/net/objectlab/kit/datecalc/common/AbstractModifiedPreceedingDateCalculatorTest.java
    trunk/datecalc-jdk/.classpath
    trunk/datecalc-jdk/.project
    trunk/datecalc-jdk/.settings/org.eclipse.jdt.core.prefs
    trunk/datecalc-jdk/qalab.xml
    trunk/datecalc-jdk/src/main/java/net/objectlab/kit/datecalc/jdk/CalendarKitCalculatorsFactory.java
    trunk/datecalc-jdk/src/main/java/net/objectlab/kit/datecalc/jdk/CalendarModifiedPreceedingHandler.java
    trunk/datecalc-jdk/src/main/java/net/objectlab/kit/datecalc/jdk/DateKitCalculatorsFactory.java
    trunk/datecalc-jdk/src/main/java/net/objectlab/kit/datecalc/jdk/DateModifiedPreceedingHandler.java
    trunk/datecalc-joda/.classpath
    trunk/datecalc-joda/.project
    trunk/datecalc-joda/.settings/org.eclipse.jdt.core.prefs
    trunk/datecalc-joda/qalab.xml
    trunk/datecalc-joda/src/main/java/net/objectlab/kit/datecalc/joda/LocalDateKitCalculatorsFactory.java
    trunk/datecalc-joda/src/main/java/net/objectlab/kit/datecalc/joda/LocalDateModifiedPreceedingHandler.java
    trunk/datecalc-joda/src/main/java/net/objectlab/kit/datecalc/joda/YearMonthDayKitCalculatorsFactory.java
    trunk/datecalc-joda/src/main/java/net/objectlab/kit/datecalc/joda/YearMonthDayModifiedPreceedingHandler.java
    trunk/src/site/changes.xml
    trunk/statsvn.bat
Added Paths:
-----------
    trunk/datecalc-jdk/src/main/java/net/objectlab/kit/datecalc/jdk/CalendarModifiedPrecedingHandler.java
    trunk/datecalc-jdk/src/main/java/net/objectlab/kit/datecalc/jdk/DateModifiedPrecedingHandler.java
    trunk/datecalc-joda/src/main/java/net/objectlab/kit/datecalc/joda/LocalDateModifiedPrecedingHandler.java
    trunk/datecalc-joda/src/main/java/net/objectlab/kit/datecalc/joda/YearMonthDayModifiedPrecedingHandler.java
Modified: trunk/common-build/project.xml
===================================================================
--- trunk/common-build/project.xml	2008-03-24 17:59:46 UTC (rev 262)
+++ trunk/common-build/project.xml	2008-05-05 16:37:50 UTC (rev 263)
@@ -1,171 +1,141 @@
 <?xml version="1.0" encoding="UTF-8"?>
 
 <!--
-   /*  
-   * ========================================================================
-   * $Id$
-   * 
-   * Copyright 2006 the original author or authors.
-   *
-   * Licensed under the Apache License, Version 2.0 (the "License"); you may not
-   * use this file except in compliance with the License. You may obtain a copy of
-   * the License at
-   *
-   * http://www.apache.org/licenses/LICENSE-2.0
-   *
-   * Unless required by applicable law or agreed to in writing, software
-   * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
-   * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
-   * License for the specific language governing permissions and limitations under
-   * the License.
-   * ========================================================================
-   */
+    /*  
+    * ========================================================================
+    * $Id$
+    * 
+    * Copyright 2006 the original author or authors.
+    *
+    * Licensed under the Apache License, Version 2.0 (the "License"); you may not
+    * use this file except in compliance with the License. You may obtain a copy of
+    * the License at
+    *
+    * http://www.apache.org/licenses/LICENSE-2.0
+    *
+    * Unless required by applicable law or agreed to in writing, software
+    * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+    * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+    * License for the specific language governing permissions and limitations under
+    * the License.
+    * ========================================================================
+    */
 -->
 
-<project xmlns="http://maven.apache.org/POM/3.0.0"
-   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-   xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
-   <pomVersion>3</pomVersion>
-   <groupId>net.objectlab.kit.datecalc</groupId>
-   <currentVersion>1.1.0</currentVersion>
-   <organization>
-      <name>ObjectLab Financial Ltd</name>
-      <url>http://www.objectlab.co.uk</url>
-      <logo>
-         http://www.objectlab.co.uk/images/objectlab-web-noblue.gif
-      </logo>
-   </organization>
-   <inceptionYear>2006</inceptionYear>
-   <url>http://objectlabkit.sourceforge.net</url>
-   <issueTrackingUrl>
-         http://www.sourceforge.net/tracker/?group_id=175139
-   </issueTrackingUrl>
-   <siteAddress>objectlabkit.sourceforge.net</siteAddress>
-   <siteDirectory>
-      /var/www/solutions/website/objectlab.co.uk/
-   </siteDirectory>
-   <repository>
-      <url>http://objectlabkit.svn.sourceforge.net/svnroot/objectlabkit</url>
-      <connection>
-         scm:svn:https://objectlabkit.svn.sourceforge.net/svnroot/objectlabkit/trunk
-      </connection>
-      <developerConnection>
-         scm:svn:https://objectlabkit.svn.sourceforge.net/svnroot/objectlabkit/trunk
-      </developerConnection>
-   </repository>
-   <developers>
-      <developer>
-         <name>Benoit Xhenseval</name>
-         <id>benoitx</id>
-         <email>kit AT objectlab DOT co dOt uk</email>
-         <organization>ObjectLab Financial Ltd</organization>
-         <roles>
-            <role>Team Leader</role>
-            <role>Developer</role>
-         </roles>
-         <url>http://www.xhenseval.com</url>
-         <timezone>+0</timezone>
-      </developer>
-      <developer>
-         <name>Marcin Jekot</name>
-         <id>marchy</id>
-         <email>marchy at users dot sourceforge dot net</email>
-         <organization>ObjectLab Financial Ltd</organization>
-         <roles>
-            <role>Developer</role>
-         </roles>
-         <timezone>+0</timezone>
-      </developer>
-   </developers>
-   <!-- any mailing lists for the project -->
-   <mailingLists>
-      <mailingList>
-         <name>News about ObjectLab's projects (Alerts online)</name>
-         <subscribe>
-            http://lists.sourceforge.net/lists/listinfo/objectlabkit-news
-         </subscribe>
-         <unsubscribe>
-            http://lists.sourceforge.net/lists/listinfo/objectlabkit-news
-         </unsubscribe>
-         <post/>
-         <archive>
-            http://sourceforge.net/mailarchive/forum.php?forum=objectlabkit-news
-         </archive>
-      </mailingList>
-      <mailingList>
-         <name>Kit Announcements</name>
-         <subscribe>
-            http://lists.sourceforge.net/lists/listinfo/objectlabkit-announce
-         </subscribe>
-         <unsubscribe>
-            http://lists.sourceforge.net/lists/listinfo/objectlabkit-announce
-         </unsubscribe>
-         <post/>
-         <archive>
-            http://sourceforge.net/mailarchive/forum.php?forum=objectlabkit-announce
-         </archive>
-      </mailingList>
-      <mailingList>
-         <name>Kit User</name>
-         <subscribe>
-            http://lists.sourceforge.net/lists/listinfo/objectlabkit-user
-         </subscribe>
-         <unsubscribe>
-            http://lists.sourceforge.net/lists/listinfo/objectlabkit-user
-         </unsubscribe>
-         <post>obj...@li...</post>
-         <archive>
-            http://sourceforge.net/mailarchive/forum.php?forum=objectlabkit-user
-         </archive>
-      </mailingList>
-      <mailingList>
-         <name>Kit Developers (SVN checkins)</name>
-         <subscribe>
-            http://lists.sourceforge.net/lists/listinfo/objectlabkit-svn
-         </subscribe>
-         <unsubscribe>
-            http://lists.sourceforge.net/lists/listinfo/objectlabkit-svn
-         </unsubscribe>
-         <post/>
-         <archive>
-            http://sourceforge.net/mailarchive/forum.php?forum=objectlabkit-svn
-         </archive>
-      </mailingList>
-   </mailingLists>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
+    <pomVersion>3</pomVersion>
+    <groupId>net.objectlab.kit.datecalc</groupId>
+    <currentVersion>1.2.0</currentVersion>
+    <organization>
+        <name>Appendium - Portfolio Financing Platform</name>
+        <url>http://www.appendium.com/</url>
+        <logo>http://www.appendium.com/openimages/appendium_logo.jpg</logo>
+    </organization>
+    <inceptionYear>2006</inceptionYear>
+    <url>http://objectlabkit.sourceforge.net</url>
+    <issueTrackingUrl>http://www.sourceforge.net/tracker/?group_id=175139</issueTrackingUrl>
+    <siteAddress>objectlabkit.sourceforge.net</siteAddress>
+    <siteDirectory>/var/www/solutions/website/objectlab.co.uk/</siteDirectory>
+    <repository>
+        <url>http://objectlabkit.svn.sourceforge.net/svnroot/objectlabkit</url>
+        <connection>scm:svn:https://objectlabkit.svn.sourceforge.net/svnroot/objectlabkit/trunk</connection>
+        <developerConnection>scm:svn:https://objectlabkit.svn.sourceforge.net/svnroot/objectlabkit/trunk</developerConnection>
+    </repository>
+    <developers>
+        <developer>
+            <name>Benoit Xhenseval</name>
+            <id>benoitx</id>
+            <email>kit AT appendium DOT com</email>
+            <organization>Appendium Ltd</organization>
+            <roles>
+                <role>Team Leader</role>
+                <role>Developer</role>
+            </roles>
+            <url>http://www.xhenseval.com</url>
+            <timezone>+0</timezone>
+        </developer>
+        <developer>
+            <name>Marcin Jekot</name>
+            <id>marchy</id>
+            <email>marchy at users dot sourceforge dot net</email>
+            <organization>ObjectLab Financial Ltd</organization>
+            <roles>
+                <role>Developer</role>
+            </roles>
+            <timezone>+0</timezone>
+        </developer>
+    </developers>
+    <!-- any mailing lists for the project -->
+    <mailingLists>
+        <mailingList>
+            <name>News about ObjectLab's projects (Alerts online)</name>
+            <subscribe>http://lists.sourceforge.net/lists/listinfo/objectlabkit-news</subscribe>
+            <unsubscribe>http://lists.sourceforge.net/lists/listinfo/objectlabkit-news</unsubscribe>
+            <post />
+            <archive>http://sourceforge.net/mailarchive/forum.php?forum=objectlabkit-news</archive>
+        </mailingList>
+        <mailingList>
+            <name>Kit Announcements</name>
+            <subscribe>http://lists.sourceforge.net/lists/listinfo/objectlabkit-announce</subscribe>
+            <unsubscribe>http://lists.sourceforge.net/lists/listinfo/objectlabkit-announce</unsubscribe>
+            <post />
+            <archive>http://sourceforge.net/mailarchive/forum.php?forum=objectlabkit-announce</archive>
+        </mailingList>
+        <mailingList>
+            <name>Kit User</name>
+            <subscribe>http://lists.sourceforge.net/lists/listinfo/objectlabkit-user</subscribe>
+            <unsubscribe>http://lists.sourceforge.net/lists/listinfo/objectlabkit-user</unsubscribe>
+            <post>obj...@li...</post>
+            <archive>http://sourceforge.net/mailarchive/forum.php?forum=objectlabkit-user</archive>
+        </mailingList>
+        <mailingList>
+            <name>Kit Developers (SVN checkins)</name>
+            <subscribe>http://lists.sourceforge.net/lists/listinfo/objectlabkit-svn</subscribe>
+            <unsubscribe>http://lists.sourceforge.net/lists/listinfo/objectlabkit-svn</unsubscribe>
+            <post />
+            <archive>http://sourceforge.net/mailarchive/forum.php?forum=objectlabkit-svn</archive>
+        </mailingList>
+    </mailingLists>
 
-   <build>
-      <!-- We need to put here something other when we release it or I'll receive the emails from
-         everyone who tries to use the project... -->
-      <nagEmailAddress>ki...@ob...</nagEmailAddress>
-      <defaultGoal>kit:build</defaultGoal>
-   </build>
+    <build>
+        <!-- We need to put here something other when we release it or I'll receive the emails from
+            everyone who tries to use the project... -->
+        <nagEmailAddress>ki...@ob...</nagEmailAddress>
+        <defaultGoal>kit:build</defaultGoal>
+    </build>
 
-   <reports>
-      <report>maven-checkstyle-plugin</report>
-      <report>maven-findbugs-plugin</report>
-      <report>maven-pmd-plugin</report>
-      <report>maven-simian-plugin</report>
-      <report>maven-cobertura-plugin</report>
-      <report>maven-qalab-plugin</report>
-      <report>maven-ydoc-plugin</report>
-      <report>maven-jdepend-plugin</report>
-      <report>maven-faq-plugin</report>
-      <report>maven-junit-report-plugin</report>
-      <report>maven-jxr-plugin</report>
-      <report>maven-tasklist-plugin</report>
-   </reports>
+    <reports>
+        <report>maven-checkstyle-plugin</report>
+        <report>maven-findbugs-plugin</report>
+        <report>maven-pmd-plugin</report>
+        <report>maven-simian-plugin</report>
+        <report>maven-cobertura-plugin</report>
+        <report>maven-qalab-plugin</report>
+        <report>maven-ydoc-plugin</report>
+        <report>maven-jdepend-plugin</report>
+        <report>maven-faq-plugin</report>
+        <report>maven-junit-report-plugin</report>
+        <report>maven-jxr-plugin</report>
+        <report>maven-tasklist-plugin</report>
+    </reports>
 
-   <versions>
-      <version>
-         <id>1.1.0</id>
-         <name>1.1.0</name>
-         <tag>v1.1.0</tag>
-      </version>
-      <version>
-         <id>1.0.1</id>
-         <name>1.0.1</name>
-         <tag>v1.0.1</tag>
-      </version>
-   </versions>
+    <versions>
+        <version>
+            <id>1.1.0</id>
+            <name>1.1.0</name>
+            <tag>v1.1.0</tag>
+        </version>
+        <version>
+            <id>1.2.0</id>
+            <name>1.2.0</name>
+            <tag>v1.2.0</tag>
+        </version>
+        <version>
+            <id>1.0.1</id>
+            <name>1.0.1</name>
+            <tag>v1.0.1</tag>
+        </version>
+    </versions>
 </project>
 
Modified: trunk/datecalc-common/.classpath
===================================================================
--- trunk/datecalc-common/.classpath	2008-03-24 17:59:46 UTC (rev 262)
+++ trunk/datecalc-common/.classpath	2008-05-05 16:37:50 UTC (rev 263)
@@ -1,7 +1,9 @@
-<classpath>
-  <classpathentry kind="src" path="src/main/java"/>
-  <classpathentry kind="src" path="src/test/java" output="target/test-classes"/>
-  <classpathentry kind="output" path="target/classes"/>
-  <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
-  <classpathentry kind="var" path="M2_REPO/junit/junit/3.8.1/junit-3.8.1.jar" sourcepath="M2_REPO/junit/junit/3.8.1/junit-3.8.1-sources.jar"/>
+<?xml version="1.0" encoding="UTF-8"?>
+
+<classpath>
+  <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"></classpathentry>
+  <classpathentry excluding="" kind="src" path="src/main/java"></classpathentry>
+  <classpathentry output="target/test-classes" kind="src" path="src/test/java"></classpathentry>
+  <classpathentry kind="var" path="MAVEN_REPO/junit/jars/junit-3.8.2.jar"></classpathentry>
+  <classpathentry kind="output" path="target/classes"></classpathentry>
 </classpath>
\ No newline at end of file
Modified: trunk/datecalc-common/.project
===================================================================
--- trunk/datecalc-common/.project	2008-03-24 17:59:46 UTC (rev 262)
+++ trunk/datecalc-common/.project	2008-05-05 16:37:50 UTC (rev 263)
@@ -1,13 +1,16 @@
-<projectDescription>
-  <name>datecalc-common</name>
-  <comment>Common Date Calculator Code</comment>
-  <projects/>
-  <buildSpec>
-    <buildCommand>
-      <name>org.eclipse.jdt.core.javabuilder</name>
-    </buildCommand>
-  </buildSpec>
-  <natures>
-    <nature>org.eclipse.jdt.core.javanature</nature>
-  </natures>
+<?xml version="1.0" encoding="UTF-8"?>
+
+<projectDescription>
+  <name>datecalc-common</name>
+  <comment>DateCalc Common library is the library used by both JDK and JODA libraries.</comment>
+  <projects></projects>
+  <buildSpec>
+    <buildCommand>
+      <name>org.eclipse.jdt.core.javabuilder</name>
+      <arguments></arguments>
+    </buildCommand>
+  </buildSpec>
+  <natures>
+    <nature>org.eclipse.jdt.core.javanature</nature>
+  </natures>
 </projectDescription>
\ No newline at end of file
Modified: trunk/datecalc-common/.settings/org.eclipse.jdt.core.prefs
===================================================================
--- trunk/datecalc-common/.settings/org.eclipse.jdt.core.prefs	2008-03-24 17:59:46 UTC (rev 262)
+++ trunk/datecalc-common/.settings/org.eclipse.jdt.core.prefs	2008-05-05 16:37:50 UTC (rev 263)
@@ -1,251 +1,9 @@
-#Mon Mar 24 16:47:07 GMT 2008
-org.eclipse.jdt.core.formatter.brace_position_for_enum_constant=end_of_line
-org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_method_invocation=do not insert
-org.eclipse.jdt.core.formatter.format_guardian_clause_on_one_line=false
-org.eclipse.jdt.core.formatter.comment.indent_root_tags=true
-org.eclipse.jdt.core.formatter.number_of_blank_lines_at_beginning_of_method_body=0
-org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_synchronized=insert
-org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_switch=do not insert
-org.eclipse.jdt.core.formatter.insert_space_after_comma_in_for_inits=insert
-org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_method_invocation=do not insert
-org.eclipse.jdt.core.compiler.compliance=1.5
-org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_annotation_type_declaration=insert
-org.eclipse.jdt.core.formatter.insert_space_after_opening_brace_in_array_initializer=insert
-org.eclipse.jdt.core.formatter.insert_new_line_before_catch_in_try_statement=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_closing_bracket_in_array_allocation_expression=do not insert
-org.eclipse.jdt.core.formatter.insert_space_between_brackets_in_array_type_reference=do not insert
-org.eclipse.jdt.core.formatter.brace_position_for_switch=end_of_line
-org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_parameters=insert
-org.eclipse.jdt.core.formatter.insert_space_before_postfix_operator=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_enum_constant=insert
-org.eclipse.jdt.core.formatter.insert_new_line_at_end_of_file_if_missing=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_catch=insert
-org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_method_declaration=do not insert
-org.eclipse.jdt.core.formatter.brace_position_for_enum_declaration=end_of_line
-org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression=16
-org.eclipse.jdt.core.formatter.continuation_indentation_for_array_initializer=2
-org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_throws=insert
-org.eclipse.jdt.core.formatter.blank_lines_before_method=1
-org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_anonymous_type_declaration=insert
-org.eclipse.jdt.core.formatter.insert_space_after_assignment_operator=insert
-org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_annotation_declaration_header=true
-org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_method_declaration=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_array_initializer=insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_annotation_type_member_declaration=do not insert
-org.eclipse.jdt.core.formatter.comment.format_html=true
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_explicitconstructorcall_arguments=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_parameterized_type_reference=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_annotation=do not insert
-org.eclipse.jdt.core.formatter.number_of_empty_lines_to_preserve=1
-org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_declarations=insert
-org.eclipse.jdt.core.formatter.comment.clear_blank_lines=false
-org.eclipse.jdt.core.formatter.comment.insert_new_line_before_root_tags=insert
-org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
-org.eclipse.jdt.core.formatter.insert_new_line_before_while_in_do_statement=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_parameters=do not insert
-org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_enum_constant=do not insert
-org.eclipse.jdt.core.formatter.alignment_for_selector_in_method_invocation=16
-org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation_type_declaration=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_question_in_conditional=insert
-org.eclipse.jdt.core.formatter.alignment_for_enum_constants=0
-org.eclipse.jdt.core.formatter.tabulation.size=4
-org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_type_declaration=insert
-org.eclipse.jdt.core.formatter.insert_new_line_in_empty_enum_constant=insert
-org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_catch=do not insert
-org.eclipse.jdt.core.formatter.comment.insert_new_line_for_parameter=insert
-org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_method_invocation=do not insert
-org.eclipse.jdt.core.formatter.indent_statements_compare_to_body=true
-org.eclipse.jdt.core.formatter.insert_space_before_colon_in_conditional=insert
-org.eclipse.jdt.core.formatter.comment.indent_parameter_description=true
-org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_method_declaration=insert
-org.eclipse.jdt.core.formatter.keep_then_statement_on_same_line=false
-org.eclipse.jdt.core.formatter.tabulation.char=space
-org.eclipse.jdt.core.formatter.insert_space_between_empty_brackets_in_array_allocation_expression=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_for=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_synchronized=do not insert
-org.eclipse.jdt.core.formatter.insert_space_after_comma_in_array_initializer=insert
-org.eclipse.jdt.core.formatter.insert_space_after_colon_in_labeled_statement=insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_constructor_declaration=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_arguments=do not insert
-org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_if=do not insert
-org.eclipse.jdt.core.formatter.insert_space_after_opening_bracket_in_array_reference=do not insert
-org.eclipse.jdt.core.formatter.insert_space_after_comma_in_for_increments=insert
-org.eclipse.jdt.core.formatter.alignment_for_parameters_in_method_declaration=16
-org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_switch=do not insert
-org.eclipse.jdt.core.formatter.use_tabs_only_for_leading_indentations=true
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_enum_constant_arguments=do not insert
-org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_type_declaration=16
-org.eclipse.jdt.core.formatter.insert_space_before_at_in_annotation_type_declaration=insert
-org.eclipse.jdt.core.formatter.insert_space_before_unary_operator=do not insert
-org.eclipse.jdt.core.formatter.brace_position_for_block_in_case=end_of_line
-org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_parameters=insert
-org.eclipse.jdt.core.formatter.brace_position_for_block=end_of_line
-org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_reference=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_arguments=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_and_in_type_parameter=insert
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_multiple_field_declarations=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_assignment_operator=insert
-org.eclipse.jdt.core.formatter.insert_space_after_ellipsis=insert
-org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_parameters=do not insert
-org.eclipse.jdt.core.formatter.insert_space_after_comma_in_superinterfaces=insert
-org.eclipse.jdt.core.formatter.insert_space_before_colon_in_default=do not insert
-org.eclipse.jdt.core.formatter.blank_lines_before_imports=1
-org.eclipse.jdt.core.formatter.insert_space_after_colon_in_conditional=insert
-org.eclipse.jdt.core.formatter.insert_space_before_semicolon_in_for=do not insert
-org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_cases=true
-org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_arguments=do not insert
-org.eclipse.jdt.core.formatter.insert_space_after_comma_in_allocation_expression=insert
-org.eclipse.jdt.core.formatter.alignment_for_compact_if=16
-org.eclipse.jdt.core.formatter.insert_space_after_and_in_type_parameter=insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_if=insert
-org.eclipse.jdt.core.formatter.insert_space_between_empty_braces_in_array_initializer=do not insert
-org.eclipse.jdt.core.formatter.blank_lines_before_member_type=1
-org.eclipse.jdt.core.formatter.insert_space_before_question_in_wildcard=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_colon_in_for=insert
-org.eclipse.jdt.core.formatter.insert_space_after_postfix_operator=do not insert
-org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_invocation_arguments=insert
-org.eclipse.jdt.core.formatter.insert_space_before_ellipsis=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_multiple_local_declarations=do not insert
-org.eclipse.jdt.core.formatter.brace_position_for_array_initializer=end_of_line
-org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_enum_constant_header=true
-org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_type_header=true
-org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_parameters=do not insert
-org.eclipse.jdt.core.formatter.blank_lines_before_field=1
-org.eclipse.jdt.core.formatter.insert_new_line_in_empty_type_declaration=insert
-org.eclipse.jdt.core.formatter.indent_statements_compare_to_block=true
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_declaration_parameters=do not insert
-org.eclipse.jdt.core.formatter.insert_space_after_colon_in_case=insert
-org.eclipse.jdt.core.formatter.keep_empty_array_initializer_on_one_line=false
-org.eclipse.jdt.core.formatter.insert_space_before_binary_operator=insert
-org.eclipse.jdt.core.formatter.insert_space_after_comma_in_annotation=insert
-org.eclipse.jdt.core.formatter.insert_space_after_closing_brace_in_block=insert
-org.eclipse.jdt.core.formatter.put_empty_statement_on_new_line=true
-org.eclipse.jdt.core.formatter.brace_position_for_method_declaration=end_of_line
-org.eclipse.jdt.core.formatter.insert_space_before_prefix_operator=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_superinterfaces=do not insert
-org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_constant_arguments=insert
-org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_parenthesized_expression=do not insert
-org.eclipse.jdt.core.formatter.comment.format_comments=false
-org.eclipse.jdt.core.formatter.blank_lines_before_first_class_body_declaration=0
-org.eclipse.jdt.core.formatter.lineSplit=131
-org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_enum_constant=do not insert
-org.eclipse.jdt.core.formatter.insert_space_after_question_in_conditional=insert
-org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_if=do not insert
-org.eclipse.jdt.core.formatter.insert_space_after_comma_in_explicitconstructorcall_arguments=insert
-org.eclipse.jdt.core.formatter.insert_space_after_question_in_wildcard=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_enum_constant=do not insert
-org.eclipse.jdt.core.formatter.blank_lines_after_imports=1
-org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_synchronized=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_block=insert
-org.eclipse.jdt.core.formatter.insert_new_line_before_else_in_if_statement=do not insert
-org.eclipse.jdt.core.formatter.insert_new_line_after_annotation=insert
-org.eclipse.jdt.core.formatter.alignment_for_throws_clause_in_method_declaration=16
-org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_cast=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_constructor_declaration_throws=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_method_invocation=do not insert
-org.eclipse.jdt.core.formatter.alignment_for_arguments_in_explicit_constructor_call=16
-org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_enum_declaration=insert
-org.eclipse.jdt.core.formatter.insert_space_before_closing_brace_in_array_initializer=insert
-org.eclipse.jdt.core.formatter.alignment_for_arguments_in_qualified_allocation_expression=16
-org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_constructor_declaration=do not insert
-org.eclipse.jdt.core.formatter.insert_space_after_semicolon_in_for=insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_allocation_expression=do not insert
-org.eclipse.jdt.core.formatter.blank_lines_before_package=0
-org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_arguments=insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_parameters=do not insert
-org.eclipse.jdt.core.formatter.brace_position_for_type_declaration=end_of_line
-org.eclipse.jdt.core.formatter.insert_space_after_closing_paren_in_cast=insert
-org.eclipse.jdt.core.formatter.brace_position_for_anonymous_type_declaration=end_of_line
-org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_while=do not insert
-org.eclipse.jdt.core.formatter.insert_new_line_in_empty_method_body=insert
-org.eclipse.jdt.core.formatter.keep_else_statement_on_same_line=false
-org.eclipse.jdt.core.formatter.align_type_members_on_columns=false
-org.eclipse.jdt.core.formatter.insert_space_after_opening_bracket_in_array_allocation_expression=do not insert
-org.eclipse.jdt.core.formatter.blank_lines_between_type_declarations=1
-org.eclipse.jdt.core.formatter.insert_new_line_after_opening_brace_in_array_initializer=do not insert
-org.eclipse.jdt.core.formatter.insert_space_after_binary_operator=insert
-org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_annotation_type_member_declaration=do not insert
-org.eclipse.jdt.core.formatter.insert_new_line_before_closing_brace_in_array_initializer=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_constructor_declaration_parameters=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_parameterized_type_reference=do not insert
-org.eclipse.jdt.core.formatter.insert_space_after_prefix_operator=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_annotation=do not insert
-org.eclipse.jdt.core.formatter.brace_position_for_constructor_declaration=end_of_line
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_parameterized_type_reference=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_parenthesized_expression=do not insert
-org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_switch=false
-org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_cast=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_for=insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_type_reference=do not insert
-org.eclipse.jdt.core.formatter.comment.format_header=false
-org.eclipse.jdt.core.formatter.insert_new_line_in_empty_block=insert
-org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_parameterized_type_reference=do not insert
-eclipse.preferences.version=1
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_invocation_arguments=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_arguments=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_allocation_expression=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_colon_in_assert=insert
-org.eclipse.jdt.core.formatter.alignment_for_superclass_in_type_declaration=16
-org.eclipse.jdt.core.formatter.insert_new_line_in_empty_anonymous_type_declaration=insert
-org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_enum_declaration=16
-org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_method_declaration=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_enum_declarations=do not insert
-org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation=do not insert
-org.eclipse.jdt.core.formatter.alignment_for_conditional_expression=80
-org.eclipse.jdt.core.formatter.blank_lines_before_new_chunk=1
-org.eclipse.jdt.core.formatter.brace_position_for_annotation_type_declaration=end_of_line
-org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_annotation=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_closing_bracket_in_array_reference=do not insert
-org.eclipse.jdt.core.formatter.alignment_for_multiple_fields=16
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_for_inits=do not insert
-org.eclipse.jdt.core.formatter.alignment_for_arguments_in_method_invocation=16
-org.eclipse.jdt.core.formatter.alignment_for_expressions_in_array_initializer=16
-org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_arguments=insert
-org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_constructor_declaration=do not insert
-org.eclipse.jdt.core.formatter.keep_imple_if_on_one_line=false
-org.eclipse.jdt.core.formatter.insert_space_before_parenthesized_expression_in_return=insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_while=insert
-org.eclipse.jdt.core.formatter.insert_space_after_comma_in_parameterized_type_reference=insert
-org.eclipse.jdt.core.formatter.alignment_for_arguments_in_enum_constant=16
-org.eclipse.jdt.core.formatter.indentation.size=8
-org.eclipse.jdt.core.formatter.alignment_for_assignment=0
-org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_declaration_parameters=insert
-org.eclipse.jdt.core.formatter.blank_lines_after_package=1
-org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_declaration_throws=insert
-org.eclipse.jdt.core.formatter.insert_space_before_colon_in_case=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_colon_in_labeled_statement=do not insert
-org.eclipse.jdt.core.formatter.insert_space_after_comma_in_multiple_field_declarations=insert
-org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_parameters=insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_switch=insert
-org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_enum_constant=do not insert
-org.eclipse.jdt.core.formatter.insert_new_line_in_empty_annotation_declaration=insert
-org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_catch=do not insert
-org.eclipse.jdt.core.formatter.indent_empty_lines=false
-org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_parenthesized_expression=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_semicolon=do not insert
-org.eclipse.jdt.core.formatter.alignment_for_parameters_in_constructor_declaration=16
-org.eclipse.jdt.core.formatter.alignment_for_binary_expression=16
-org.eclipse.jdt.core.formatter.insert_new_line_in_empty_enum_declaration=insert
-org.eclipse.jdt.core.formatter.alignment_for_throws_clause_in_constructor_declaration=16
-org.eclipse.jdt.core.formatter.insert_new_line_before_finally_in_try_statement=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_constructor_declaration=insert
-org.eclipse.jdt.core.formatter.indent_breaks_compare_to_cases=true
-org.eclipse.jdt.core.formatter.compact_else_if=true
-org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_for=do not insert
-org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_while=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_declaration_throws=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_for_increments=do not insert
-org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_method_declaration=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_constructor_declaration=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_switch=insert
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_array_initializer=do not insert
-org.eclipse.jdt.core.formatter.insert_space_after_colon_in_for=insert
-org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_annotation=do not insert
-org.eclipse.jdt.core.compiler.source=1.5
-org.eclipse.jdt.core.formatter.comment.format_source_code=true
-org.eclipse.jdt.core.formatter.comment.line_length=80
-org.eclipse.jdt.core.formatter.insert_space_after_unary_operator=do not insert
-org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_enum_declaration_header=true
-org.eclipse.jdt.core.formatter.insert_space_after_comma_in_multiple_local_declarations=insert
-org.eclipse.jdt.core.formatter.continuation_indentation=2
-org.eclipse.jdt.core.formatter.insert_space_after_colon_in_assert=insert
+
+
+
+
+
+eclipse.preferences.version=1
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=5
+org.eclipse.jdt.core.compiler.compliance=5
+org.eclipse.jdt.core.compiler.source=1.5
Modified: trunk/datecalc-common/qalab.xml
===================================================================
--- trunk/datecalc-common/qalab.xml	2008-03-24 17:59:46 UTC (rev 262)
+++ trunk/datecalc-common/qalab.xml	2008-05-05 16:37:50 UTC (rev 263)
@@ -197,6 +197,14 @@
             project="objectlabkit" statvalue="45" type="cobertura-line"/>
         <summaryresult date="2008-03-24" filecount="20" module="common"
             project="objectlabkit" statvalue="33" type="cobertura-branch"/>
+        <summaryresult date="2008-03-27" filecount="21" module="common"
+            project="objectlabkit" statvalue="1" type="checkstyle"/>
+        <summaryresult date="2008-03-27" filecount="2" module="common"
+            project="objectlabkit" statvalue="2" type="findbugs"/>
+        <summaryresult date="2008-03-27" filecount="20" module="common"
+            project="objectlabkit" statvalue="45" type="cobertura-line"/>
+        <summaryresult date="2008-03-27" filecount="20" module="common"
+            project="objectlabkit" statvalue="33" type="cobertura-branch"/>
     </summary>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_package.html"
@@ -286,6 +294,9 @@
         <result date="2008-03-24" statvalue="1" type="findbugs"/>
         <result date="2008-03-24" statvalue="100" type="cobertura-line"/>
         <result date="2008-03-24" statvalue="92" type="cobertura-branch"/>
+        <result date="2008-03-27" statvalue="1" type="findbugs"/>
+        <result date="2008-03-27" statvalue="100" type="cobertura-line"/>
+        <result date="2008-03-27" statvalue="92" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_WorkingWeek.java"
@@ -363,6 +374,8 @@
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-24" statvalue="95" type="cobertura-line"/>
         <result date="2008-03-24" statvalue="90" type="cobertura-branch"/>
+        <result date="2008-03-27" statvalue="95" type="cobertura-line"/>
+        <result date="2008-03-27" statvalue="90" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_TenorCode.java"
@@ -432,6 +445,8 @@
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-24" statvalue="100" type="cobertura-line"/>
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-27" statvalue="100" type="cobertura-line"/>
+        <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_HolidayHandlerType.java"
@@ -469,6 +484,7 @@
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_PeriodCountBasis.java"
@@ -504,6 +520,7 @@
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_StandardTenor.java"
@@ -572,6 +589,8 @@
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-24" statvalue="93" type="cobertura-line"/>
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-27" statvalue="93" type="cobertura-line"/>
+        <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_AbstractDateCalculator.java"
@@ -583,6 +602,8 @@
         <result date="2007-01-22" statvalue="1" type="checkstyle"/>
         <result date="2008-03-24" statvalue="1" type="checkstyle"/>
         <result date="2008-03-24" statvalue="1" type="findbugs"/>
+        <result date="2008-03-27" statvalue="1" type="checkstyle"/>
+        <result date="2008-03-27" statvalue="1" type="findbugs"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_DateCalculatorGeneric.java"
@@ -647,6 +668,8 @@
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-24" statvalue="100" type="cobertura-line"/>
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-27" statvalue="100" type="cobertura-line"/>
+        <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_HolidayHandler.java"
@@ -706,6 +729,8 @@
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-24" statvalue="100" type="cobertura-line"/>
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-27" statvalue="100" type="cobertura-line"/>
+        <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_AbstractDateCalculatorFactory.java"
@@ -796,6 +821,8 @@
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-24" statvalue="100" type="cobertura-line"/>
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-27" statvalue="100" type="cobertura-line"/>
+        <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_Utils.java"
@@ -848,6 +875,8 @@
         <result date="2007-01-22" statvalue="85" type="cobertura-branch"/>
         <result date="2008-03-24" statvalue="77" type="cobertura-line"/>
         <result date="2008-03-24" statvalue="64" type="cobertura-branch"/>
+        <result date="2008-03-27" statvalue="77" type="cobertura-line"/>
+        <result date="2008-03-27" statvalue="64" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_IMMPeriod.java"
@@ -876,6 +905,7 @@
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_ExcelDateUtil.java"
@@ -925,6 +955,8 @@
         <result date="2007-01-22" statvalue="83" type="cobertura-branch"/>
         <result date="2008-03-24" statvalue="82" type="cobertura-line"/>
         <result date="2008-03-24" statvalue="83" type="cobertura-branch"/>
+        <result date="2008-03-27" statvalue="82" type="cobertura-line"/>
+        <result date="2008-03-27" statvalue="83" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_IMMDateCalculator.java"
@@ -972,6 +1004,8 @@
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-24" statvalue="100" type="cobertura-line"/>
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-27" statvalue="100" type="cobertura-line"/>
+        <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_AbstractIMMDateCalculator.java"
@@ -998,6 +1032,7 @@
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_KitCalculatorsFactory.java"
@@ -1041,6 +1076,8 @@
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-24" statvalue="100" type="cobertura-line"/>
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-27" statvalue="100" type="cobertura-line"/>
+        <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_HolidayCalendar.java"
@@ -1056,6 +1093,8 @@
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-24" statvalue="100" type="cobertura-line"/>
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-27" statvalue="100" type="cobertura-line"/>
+        <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_DefaultHolidayCalendar.java"
@@ -1071,6 +1110,7 @@
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-27" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_AbstractDateCalculator.java"
Modified: trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/AbstractDateCalculator.java
===================================================================
--- trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/AbstractDateCalculator.java	2008-03-24 17:59:46 UTC (rev 262)
+++ trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/AbstractDateCalculator.java	2008-05-05 16:37:50 UTC (rev 263)
@@ -36,6 +36,7 @@
 import static net.objectlab.kit.datecalc.common.HolidayHandlerType.FORWARD;
 import static net.objectlab.kit.datecalc.common.HolidayHandlerType.MODIFIED_FOLLOWING;
 import static net.objectlab.kit.datecalc.common.HolidayHandlerType.MODIFIED_PRECEEDING;
+import static net.objectlab.kit.datecalc.common.HolidayHandlerType.MODIFIED_PRECEDING;
 
 import java.util.ArrayList;
 import java.util.Collections;
@@ -75,8 +76,7 @@
 
     private int currentIncrement = 0;
 
-    protected AbstractDateCalculator(final String name, final HolidayCalendar<E> holidayCalendar,
-            final HolidayHandler<E> holidayHandler) {
+    protected AbstractDateCalculator(final String name, final HolidayCalendar<E> holidayCalendar, final HolidayHandler<E> holidayHandler) {
         this.name = name;
         if (holidayCalendar != null) {
             this.holidayCalendar = new ImmutableHolidayCalendar<E>(holidayCalendar);
@@ -307,14 +307,14 @@
     }
 
     public DateCalculator<E> moveByBusinessDays(final int businessDays) {
-        if (businessDays > 0 && holidayHandler != null
-                && (holidayHandler.getType().equals(BACKWARD) || holidayHandler.getType().equals(MODIFIED_PRECEEDING))) {
-            throw new IllegalArgumentException("A " + MODIFIED_PRECEEDING + " or " + BACKWARD
-                    + " does not allow positive steps for moveByBusinessDays");
+        if (businessDays > 0
+                && holidayHandler != null
+                && (holidayHandler.getType().equals(BACKWARD) || holidayHandler.getType().equals(MODIFIED_PRECEEDING) || holidayHandler.getType().equals(
+                        MODIFIED_PRECEDING))) {
+            throw new IllegalArgumentException("A " + MODIFIED_PRECEDING + " or " + BACKWARD + " does not allow positive steps for moveByBusinessDays");
         } else if (businessDays < 0 && holidayHandler != null
                 && (holidayHandler.getType().equals(FORWARD) || holidayHandler.getType().equals(MODIFIED_FOLLOWING))) {
-            throw new IllegalArgumentException("A " + MODIFIED_FOLLOWING + " or " + FORWARD
-                    + " does not allow negative steps for moveByBusinessDays");
+            throw new IllegalArgumentException("A " + MODIFIED_FOLLOWING + " or " + FORWARD + " does not allow negative steps for moveByBusinessDays");
         }
 
         final int numberOfStepsLeft = Math.abs(businessDays);
@@ -355,13 +355,13 @@
         }
 
         final HolidayCalendar<E> calendarToCombine = calculator.getHolidayCalendar();
-        if (calendarToCombine.getEarlyBoundary() != null && holidayCalendar.getEarlyBoundary() == null
-                || calendarToCombine.getEarlyBoundary() == null && holidayCalendar.getEarlyBoundary() != null) {
+        if (calendarToCombine.getEarlyBoundary() != null && holidayCalendar.getEarlyBoundary() == null || calendarToCombine.getEarlyBoundary() == null
+                && holidayCalendar.getEarlyBoundary() != null) {
             throw new IllegalArgumentException("Both Calendar to be combined must either have each Early boundaries or None.");
         }
 
-        if (calendarToCombine.getLateBoundary() != null && holidayCalendar.getLateBoundary() == null
-                || calendarToCombine.getLateBoundary() == null && holidayCalendar.getLateBoundary() != null) {
+        if (calendarToCombine.getLateBoundary() != null && holidayCalendar.getLateBoundary() == null || calendarToCombine.getLateBoundary() == null
+                && holidayCalendar.getLateBoundary() != null) {
             throw new IllegalArgumentException("Both Calendar to be combined must either have each Late boundaries or None.");
         }
 
@@ -369,12 +369,10 @@
             newSet.addAll(calendarToCombine.getHolidays());
         }
 
-        final HolidayCalendar<E> newCal = new DefaultHolidayCalendar<E>(newSet, compareDate(holidayCalendar.getEarlyBoundary(),
-                calendarToCombine.getEarlyBoundary(), false), compareDate(holidayCalendar.getLateBoundary(), calendarToCombine
-                .getLateBoundary(), true));
+        final HolidayCalendar<E> newCal = new DefaultHolidayCalendar<E>(newSet, compareDate(holidayCalendar.getEarlyBoundary(), calendarToCombine
+                .getEarlyBoundary(), false), compareDate(holidayCalendar.getLateBoundary(), calendarToCombine.getLateBoundary(), true));
 
-        final DateCalculator<E> cal = createNewCalculator(getName() + "/" + calculator.getName(), getStartDate(), newCal,
-                holidayHandler);
+        final DateCalculator<E> cal = createNewCalculator(getName() + "/" + calculator.getName(), getStartDate(), newCal, holidayHandler);
 
         return cal;
     }
@@ -383,8 +381,7 @@
 
     protected abstract E compareDate(E date1, E date2, boolean returnEarliest);
 
-    protected abstract DateCalculator<E> createNewCalculator(String calcName, E theStartDate, HolidayCalendar<E> holidays,
-            HolidayHandler<E> handler);
+    protected abstract DateCalculator<E> createNewCalculator(String calcName, E theStartDate, HolidayCalendar<E> holidays, HolidayHandler<E> handler);
 
     /**
      * @return Returns the currentIncrement.
Modified: trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/DateCalculator.java
===================================================================
--- trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/DateCalculator.java	2008-03-24 17:59:46 UTC (rev 262)
+++ trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/DateCalculator.java	2008-05-05 16:37:50 UTC (rev 263)
@@ -213,7 +213,7 @@
      * @return the current DateCalculator (so one can do
      *         calendar.moveByBusinessDays(2).getCurrentBusinessDate();)
      * @exception IllegalArgumentException
-     *                if the HolidayHandlerType is (MODIFIED_PRECEEDING or
+     *                if the HolidayHandlerType is (MODIFIED_PRECEDING or
      *                BACKWARD) and businessDays > 0 or (MODIFIED_FOLLOWING or
      *                FORWARD) and businessDays < 0
      */
Modified: trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/HolidayHandlerType.java
===================================================================
--- trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/HolidayHandlerType.java	2008-03-24 17:59:46 UTC (rev 262)
+++ trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/HolidayHandlerType.java	2008-05-05 16:37:50 UTC (rev 263)
@@ -73,10 +73,19 @@
      * A modified preceeding handler will move the date backward if it falls on
      * a non working day BUT, if the new date falls into another month, it will
      * revert to moving forward until it finds a working day.
+     * @deprecated uses MODIFIED_PRECEDING (spelling...)
      */
+    @Deprecated
     public static final String MODIFIED_PRECEEDING = "modifiedPreceeding";
 
     /**
+     * A modified preceding handler will move the date backward if it falls on
+     * a non working day BUT, if the new date falls into another month, it will
+     * revert to moving forward until it finds a working day.
+     */
+    public static final String MODIFIED_PRECEDING = "modifiedPreceding";
+
+    /**
      * A handler that moves the date forward unless the increment is negative
      * (eg moveByDays(-2)) in which case it behaves like a Backward handler.
      */
Modified: trunk/datecalc-common/src/test/java/net/objectlab/kit/datecalc/common/AbstractDateCalculatorCombinationTest.java
===================================================================
--- trunk/datecalc-common/src/test/java/net/objectlab/kit/datecalc/common/AbstractDateCalculatorCombinationTest.java	2008-03-24 17:59:46 UTC (rev 262)
+++ trunk/datecalc-common/src/test/java/net/objectlab/kit/datecalc/common/AbstractDateCalculatorCombinationTest.java	2008-05-05 16:37:50 UTC (rev 263)
@@ -177,7 +177,7 @@
         checkInvalidEarlyBoundary(HolidayHandlerType.BACKWARD);
         checkInvalidEarlyBoundary(HolidayHandlerType.FORWARD_UNLESS_MOVING_BACK);
         checkInvalidEarlyBoundary(HolidayHandlerType.MODIFIED_FOLLOWING);
-        checkInvalidEarlyBoundary(HolidayHandlerType.MODIFIED_PRECEEDING);
+        checkInvalidEarlyBoundary(HolidayHandlerType.MODIFIED_PRECEDING);
     }
 
     public void checkInvalidEarlyBoundary(final String type) {
@@ -209,7 +209,7 @@
         checkInvalidLateBoundary(HolidayHandlerType.BACKWARD);
         checkInvalidLateBoundary(HolidayHandlerType.FORWARD_UNLESS_MOVING_BACK);
         checkInvalidLateBoundary(HolidayHandlerType.MODIFIED_FOLLOWING);
-        checkInvalidLateBoundary(HolidayHandlerType.MODIFIED_PRECEEDING);
+        checkInvalidLateBoundary(HolidayHandlerType.MODIFIED_PRECEDING);
     }
 
     public void checkInvalidLateBoundary(final String type) {
Modified: trunk/datecalc-common/src/test/java/net/objectlab/kit/datecalc/common/AbstractDateCalculatorFactoryTest.java
===================================================================
--- trunk/datecalc-common/src/test/java/net/objectlab/kit/datecalc/common/AbstractDateCalculatorFactoryTest.java	2008-03-24 17:59:46 UTC (rev 262)
+++ trunk/datecalc-common/src/test/java/net/objectlab/kit/datecalc/common/AbstractDateCalculatorFactoryTest.java	2008-05-05 16:37:50 UTC (rev 263)
@@ -87,8 +87,8 @@
         cal1 = getDateCalculatorFactory().getDateCalculator("bla", HolidayHandlerType.MODIFIED_FOLLOWING);
         Assert.assertEquals("Type", HolidayHandlerType.MODIFIED_FOLLOWING, cal1.getHolidayHandlerType());
 
-        cal1 = getDateCalculatorFactory().getDateCalculator("bla", HolidayHandlerType.MODIFIED_PRECEEDING);
-        Assert.assertEquals("Type", HolidayHandlerType.MODIFIED_PRECEEDING, cal1.getHolidayHandlerType());
+        cal1 = getDateCalculatorFactory().getDateCalculator("bla", HolidayHandlerType.MODIFIED_PRECEDING);
+        Assert.assertEquals("Type", HolidayHandlerType.MODIFIED_PRECEDING, cal1.getHolidayHandlerType());
     }
 
     public void testGetIncorrectAlgo() {
Modified: trunk/datecalc-common/src/test/java/net/objectlab/kit/datecalc/common/AbstractModifiedPreceedingDateCalculatorTest.java
===================================================================
--- trunk/datecalc-common/src/test/java/net/objectlab/kit/datecalc/common/AbstractModifiedPreceedingDateCalculatorTest.java	2008-03-24 17:59:46 UTC (rev 262)
+++ trunk/datecalc-common/src/test/java/net/objectlab/kit/datecalc/common/AbstractModifiedPreceedingDateCalcul...
 
[truncated message content] | 
| 
      
      
      From: <be...@us...> - 2008-03-24 18:00:14
      
     | 
| Revision: 262
          http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=262&view=rev
Author:   benoitx
Date:     2008-03-24 10:59:46 -0700 (Mon, 24 Mar 2008)
Log Message:
-----------
Tag 1.1.0
Added Paths:
-----------
    tags/1.1.0/
Copied: tags/1.1.0 (from rev 261, trunk)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
 | 
| 
      
      
      From: <be...@us...> - 2008-03-24 17:58:36
      
     | 
| Revision: 261
          http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=261&view=rev
Author:   benoitx
Date:     2008-03-24 10:58:23 -0700 (Mon, 24 Mar 2008)
Log Message:
-----------
final changes before tag
Modified Paths:
--------------
    trunk/datecalc-jdk/qalab.xml
    trunk/datecalc-joda/qalab.xml
Modified: trunk/datecalc-jdk/qalab.xml
===================================================================
--- trunk/datecalc-jdk/qalab.xml	2008-03-24 17:07:03 UTC (rev 260)
+++ trunk/datecalc-jdk/qalab.xml	2008-03-24 17:58:23 UTC (rev 261)
@@ -200,7 +200,7 @@
         <summaryresult date="2008-03-24" filecount="19" module="jdk"
             project="objectlabkit" statvalue="96" type="cobertura-line"/>
         <summaryresult date="2008-03-24" filecount="19" module="jdk"
-            project="objectlabkit" statvalue="81" type="cobertura-branch"/>
+            project="objectlabkit" statvalue="82" type="cobertura-branch"/>
         <summaryresult date="2008-03-24" filecount="1" module="jdk"
             project="objectlabkit" statvalue="1" type="pmd"/>
     </summary>
@@ -1196,7 +1196,7 @@
         <result date="2007-01-22" statvalue="88" type="cobertura-line"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-24" statvalue="88" type="cobertura-line"/>
-        <result date="2008-03-24" statvalue="73" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="76" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_CalendarIMMDateCalculator.java"
@@ -1335,7 +1335,7 @@
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="89" type="cobertura-line"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
-        <result date="2008-03-24" statvalue="91" type="cobertura-line"/>
+        <result date="2008-03-24" statvalue="89" type="cobertura-line"/>
         <result date="2008-03-24" statvalue="78" type="cobertura-branch"/>
     </file>
     <file
Modified: trunk/datecalc-joda/qalab.xml
===================================================================
--- trunk/datecalc-joda/qalab.xml	2008-03-24 17:07:03 UTC (rev 260)
+++ trunk/datecalc-joda/qalab.xml	2008-03-24 17:58:23 UTC (rev 261)
@@ -204,7 +204,7 @@
         <summaryresult date="2008-03-24" filecount="22" module="joda"
             project="objectlabkit" statvalue="2" type="checkstyle"/>
         <summaryresult date="2008-03-24" filecount="21" module="joda"
-            project="objectlabkit" statvalue="96" type="cobertura-line"/>
+            project="objectlabkit" statvalue="95" type="cobertura-line"/>
         <summaryresult date="2008-03-24" filecount="21" module="joda"
             project="objectlabkit" statvalue="84" type="cobertura-branch"/>
         <summaryresult date="2008-03-24" filecount="1" module="joda"
@@ -729,7 +729,7 @@
         <result date="2007-01-22" statvalue="85" type="cobertura-line"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
         <result date="2008-03-24" statvalue="85" type="cobertura-line"/>
-        <result date="2008-03-24" statvalue="70" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="73" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_LocalDateForwardHandler.java"
@@ -983,7 +983,7 @@
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="90" type="cobertura-line"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
-        <result date="2008-03-24" statvalue="92" type="cobertura-line"/>
+        <result date="2008-03-24" statvalue="90" type="cobertura-line"/>
         <result date="2008-03-24" statvalue="82" type="cobertura-branch"/>
     </file>
     <file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
 | 
| 
      
      
      From: <be...@us...> - 2008-03-24 17:28:47
      
     | 
| Revision: 260
          http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=260&view=rev
Author:   benoitx
Date:     2008-03-24 10:07:03 -0700 (Mon, 24 Mar 2008)
Log Message:
-----------
Fix test and rebuild the Eclipse projects
Modified Paths:
--------------
    trunk/.project
    trunk/datecalc-common/.classpath
    trunk/datecalc-common/.project
    trunk/datecalc-common/.settings/org.eclipse.jdt.core.prefs
    trunk/datecalc-common/src/test/java/net/objectlab/kit/datecalc/common/AbstractDateCalculatorCombinationTest.java
    trunk/datecalc-common/src/test/java/net/objectlab/kit/datecalc/common/AbstractDateTestCase.java
    trunk/datecalc-jdk/.classpath
    trunk/datecalc-jdk/.project
    trunk/datecalc-jdk/.settings/org.eclipse.jdt.core.prefs
    trunk/datecalc-joda/.classpath
    trunk/datecalc-joda/.project
    trunk/datecalc-joda/.settings/org.eclipse.jdt.core.prefs
Modified: trunk/.project
===================================================================
--- trunk/.project	2008-03-24 16:15:30 UTC (rev 259)
+++ trunk/.project	2008-03-24 17:07:03 UTC (rev 260)
@@ -1,11 +1,7 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<projectDescription>
-	<name>objectlabkit</name>
-	<comment></comment>
-	<projects>
-	</projects>
-	<buildSpec>
-	</buildSpec>
-	<natures>
-	</natures>
-</projectDescription>
+<?xml version="1.0" encoding="UTF-8"?>
+
+<projectDescription>
+  <name>objectlabkit</name>
+  <comment></comment>
+  <projects></projects>
+</projectDescription>
\ No newline at end of file
Modified: trunk/datecalc-common/.classpath
===================================================================
--- trunk/datecalc-common/.classpath	2008-03-24 16:15:30 UTC (rev 259)
+++ trunk/datecalc-common/.classpath	2008-03-24 17:07:03 UTC (rev 260)
@@ -1,8 +1,7 @@
-<?xml version="1.0" encoding="UTF-8"?>
 <classpath>
-	<classpathentry output="target/classes" kind="src" path="src/main/java"/>
-	<classpathentry output="target/test-classes" kind="src" path="src/test/java"/>
-	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
-	<classpathentry kind="var" path="M2_REPO/junit/junit/3.8.1/junit-3.8.1.jar"/>
-	<classpathentry kind="output" path="target/classes"/>
-</classpath>
+  <classpathentry kind="src" path="src/main/java"/>
+  <classpathentry kind="src" path="src/test/java" output="target/test-classes"/>
+  <classpathentry kind="output" path="target/classes"/>
+  <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
+  <classpathentry kind="var" path="M2_REPO/junit/junit/3.8.1/junit-3.8.1.jar" sourcepath="M2_REPO/junit/junit/3.8.1/junit-3.8.1-sources.jar"/>
+</classpath>
\ No newline at end of file
Modified: trunk/datecalc-common/.project
===================================================================
--- trunk/datecalc-common/.project	2008-03-24 16:15:30 UTC (rev 259)
+++ trunk/datecalc-common/.project	2008-03-24 17:07:03 UTC (rev 260)
@@ -1,17 +1,13 @@
-<?xml version="1.0" encoding="UTF-8"?>
 <projectDescription>
-	<name>datecalc-common</name>
-	<comment>DateCalc Common library is the library used by both JDK and JODA libraries.</comment>
-	<projects>
-	</projects>
-	<buildSpec>
-		<buildCommand>
-			<name>org.eclipse.jdt.core.javabuilder</name>
-			<arguments>
-			</arguments>
-		</buildCommand>
-	</buildSpec>
-	<natures>
-		<nature>org.eclipse.jdt.core.javanature</nature>
-	</natures>
-</projectDescription>
+  <name>datecalc-common</name>
+  <comment>Common Date Calculator Code</comment>
+  <projects/>
+  <buildSpec>
+    <buildCommand>
+      <name>org.eclipse.jdt.core.javabuilder</name>
+    </buildCommand>
+  </buildSpec>
+  <natures>
+    <nature>org.eclipse.jdt.core.javanature</nature>
+  </natures>
+</projectDescription>
\ No newline at end of file
Modified: trunk/datecalc-common/.settings/org.eclipse.jdt.core.prefs
===================================================================
--- trunk/datecalc-common/.settings/org.eclipse.jdt.core.prefs	2008-03-24 16:15:30 UTC (rev 259)
+++ trunk/datecalc-common/.settings/org.eclipse.jdt.core.prefs	2008-03-24 17:07:03 UTC (rev 260)
@@ -1,248 +1,251 @@
-#Wed Jan 03 23:24:40 GMT 2007
-eclipse.preferences.version=1
-org.eclipse.jdt.core.formatter.align_type_members_on_columns=false
+#Mon Mar 24 16:47:07 GMT 2008
+org.eclipse.jdt.core.formatter.brace_position_for_enum_constant=end_of_line
+org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_method_invocation=do not insert
+org.eclipse.jdt.core.formatter.format_guardian_clause_on_one_line=false
+org.eclipse.jdt.core.formatter.comment.indent_root_tags=true
+org.eclipse.jdt.core.formatter.number_of_blank_lines_at_beginning_of_method_body=0
+org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_synchronized=insert
+org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_switch=do not insert
+org.eclipse.jdt.core.formatter.insert_space_after_comma_in_for_inits=insert
+org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_method_invocation=do not insert
+org.eclipse.jdt.core.compiler.compliance=1.5
+org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_annotation_type_declaration=insert
+org.eclipse.jdt.core.formatter.insert_space_after_opening_brace_in_array_initializer=insert
+org.eclipse.jdt.core.formatter.insert_new_line_before_catch_in_try_statement=do not insert
+org.eclipse.jdt.core.formatter.insert_space_before_closing_bracket_in_array_allocation_expression=do not insert
+org.eclipse.jdt.core.formatter.insert_space_between_brackets_in_array_type_reference=do not insert
+org.eclipse.jdt.core.formatter.brace_position_for_switch=end_of_line
+org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_parameters=insert
+org.eclipse.jdt.core.formatter.insert_space_before_postfix_operator=do not insert
+org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_enum_constant=insert
+org.eclipse.jdt.core.formatter.insert_new_line_at_end_of_file_if_missing=do not insert
+org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_catch=insert
+org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_method_declaration=do not insert
+org.eclipse.jdt.core.formatter.brace_position_for_enum_declaration=end_of_line
 org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression=16
-org.eclipse.jdt.core.formatter.alignment_for_arguments_in_enum_constant=16
-org.eclipse.jdt.core.formatter.alignment_for_arguments_in_explicit_constructor_call=16
-org.eclipse.jdt.core.formatter.alignment_for_arguments_in_method_invocation=16
-org.eclipse.jdt.core.formatter.alignment_for_arguments_in_qualified_allocation_expression=16
-org.eclipse.jdt.core.formatter.alignment_for_assignment=0
-org.eclipse.jdt.core.formatter.alignment_for_binary_expression=16
-org.eclipse.jdt.core.formatter.alignment_for_compact_if=16
-org.eclipse.jdt.core.formatter.alignment_for_conditional_expression=80
+org.eclipse.jdt.core.formatter.continuation_indentation_for_array_initializer=2
+org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_throws=insert
+org.eclipse.jdt.core.formatter.blank_lines_before_method=1
+org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_anonymous_type_declaration=insert
+org.eclipse.jdt.core.formatter.insert_space_after_assignment_operator=insert
+org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_annotation_declaration_header=true
+org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_method_declaration=do not insert
+org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_array_initializer=insert
+org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_annotation_type_member_declaration=do not insert
+org.eclipse.jdt.core.formatter.comment.format_html=true
+org.eclipse.jdt.core.formatter.insert_space_before_comma_in_explicitconstructorcall_arguments=do not insert
+org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_parameterized_type_reference=do not insert
+org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_annotation=do not insert
+org.eclipse.jdt.core.formatter.number_of_empty_lines_to_preserve=1
+org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_declarations=insert
+org.eclipse.jdt.core.formatter.comment.clear_blank_lines=false
+org.eclipse.jdt.core.formatter.comment.insert_new_line_before_root_tags=insert
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
+org.eclipse.jdt.core.formatter.insert_new_line_before_while_in_do_statement=do not insert
+org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_parameters=do not insert
+org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_enum_constant=do not insert
+org.eclipse.jdt.core.formatter.alignment_for_selector_in_method_invocation=16
+org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation_type_declaration=do not insert
+org.eclipse.jdt.core.formatter.insert_space_before_question_in_conditional=insert
 org.eclipse.jdt.core.formatter.alignment_for_enum_constants=0
-org.eclipse.jdt.core.formatter.alignment_for_expressions_in_array_initializer=16
-org.eclipse.jdt.core.formatter.alignment_for_multiple_fields=16
-org.eclipse.jdt.core.formatter.alignment_for_parameters_in_constructor_declaration=16
+org.eclipse.jdt.core.formatter.tabulation.size=4
+org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_type_declaration=insert
+org.eclipse.jdt.core.formatter.insert_new_line_in_empty_enum_constant=insert
+org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_catch=do not insert
+org.eclipse.jdt.core.formatter.comment.insert_new_line_for_parameter=insert
+org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_method_invocation=do not insert
+org.eclipse.jdt.core.formatter.indent_statements_compare_to_body=true
+org.eclipse.jdt.core.formatter.insert_space_before_colon_in_conditional=insert
+org.eclipse.jdt.core.formatter.comment.indent_parameter_description=true
+org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_method_declaration=insert
+org.eclipse.jdt.core.formatter.keep_then_statement_on_same_line=false
+org.eclipse.jdt.core.formatter.tabulation.char=space
+org.eclipse.jdt.core.formatter.insert_space_between_empty_brackets_in_array_allocation_expression=do not insert
+org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_for=do not insert
+org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_synchronized=do not insert
+org.eclipse.jdt.core.formatter.insert_space_after_comma_in_array_initializer=insert
+org.eclipse.jdt.core.formatter.insert_space_after_colon_in_labeled_statement=insert
+org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_constructor_declaration=do not insert
+org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_arguments=do not insert
+org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_if=do not insert
+org.eclipse.jdt.core.formatter.insert_space_after_opening_bracket_in_array_reference=do not insert
+org.eclipse.jdt.core.formatter.insert_space_after_comma_in_for_increments=insert
 org.eclipse.jdt.core.formatter.alignment_for_parameters_in_method_declaration=16
-org.eclipse.jdt.core.formatter.alignment_for_selector_in_method_invocation=16
-org.eclipse.jdt.core.formatter.alignment_for_superclass_in_type_declaration=16
-org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_enum_declaration=16
+org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_switch=do not insert
+org.eclipse.jdt.core.formatter.use_tabs_only_for_leading_indentations=true
+org.eclipse.jdt.core.formatter.insert_space_before_comma_in_enum_constant_arguments=do not insert
 org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_type_declaration=16
-org.eclipse.jdt.core.formatter.alignment_for_throws_clause_in_constructor_declaration=16
-org.eclipse.jdt.core.formatter.alignment_for_throws_clause_in_method_declaration=16
-org.eclipse.jdt.core.formatter.blank_lines_after_imports=1
-org.eclipse.jdt.core.formatter.blank_lines_after_package=1
-org.eclipse.jdt.core.formatter.blank_lines_before_field=1
-org.eclipse.jdt.core.formatter.blank_lines_before_first_class_body_declaration=0
+org.eclipse.jdt.core.formatter.insert_space_before_at_in_annotation_type_declaration=insert
+org.eclipse.jdt.core.formatter.insert_space_before_unary_operator=do not insert
+org.eclipse.jdt.core.formatter.brace_position_for_block_in_case=end_of_line
+org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_parameters=insert
+org.eclipse.jdt.core.formatter.brace_position_for_block=end_of_line
+org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_reference=do not insert
+org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_arguments=do not insert
+org.eclipse.jdt.core.formatter.insert_space_before_and_in_type_parameter=insert
+org.eclipse.jdt.core.formatter.insert_space_before_comma_in_multiple_field_declarations=do not insert
+org.eclipse.jdt.core.formatter.insert_space_before_assignment_operator=insert
+org.eclipse.jdt.core.formatter.insert_space_after_ellipsis=insert
+org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_parameters=do not insert
+org.eclipse.jdt.core.formatter.insert_space_after_comma_in_superinterfaces=insert
+org.eclipse.jdt.core.formatter.insert_space_before_colon_in_default=do not insert
 org.eclipse.jdt.core.formatter.blank_lines_before_imports=1
+org.eclipse.jdt.core.formatter.insert_space_after_colon_in_conditional=insert
+org.eclipse.jdt.core.formatter.insert_space_before_semicolon_in_for=do not insert
+org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_cases=true
+org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_arguments=do not insert
+org.eclipse.jdt.core.formatter.insert_space_after_comma_in_allocation_expression=insert
+org.eclipse.jdt.core.formatter.alignment_for_compact_if=16
+org.eclipse.jdt.core.formatter.insert_space_after_and_in_type_parameter=insert
+org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_if=insert
+org.eclipse.jdt.core.formatter.insert_space_between_empty_braces_in_array_initializer=do not insert
 org.eclipse.jdt.core.formatter.blank_lines_before_member_type=1
-org.eclipse.jdt.core.formatter.blank_lines_before_method=1
-org.eclipse.jdt.core.formatter.blank_lines_before_new_chunk=1
-org.eclipse.jdt.core.formatter.blank_lines_before_package=0
-org.eclipse.jdt.core.formatter.blank_lines_between_type_declarations=1
-org.eclipse.jdt.core.formatter.brace_position_for_annotation_type_declaration=end_of_line
-org.eclipse.jdt.core.formatter.brace_position_for_anonymous_type_declaration=end_of_line
+org.eclipse.jdt.core.formatter.insert_space_before_question_in_wildcard=do not insert
+org.eclipse.jdt.core.formatter.insert_space_before_colon_in_for=insert
+org.eclipse.jdt.core.formatter.insert_space_after_postfix_operator=do not insert
+org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_invocation_arguments=insert
+org.eclipse.jdt.core.formatter.insert_space_before_ellipsis=do not insert
+org.eclipse.jdt.core.formatter.insert_space_before_comma_in_multiple_local_declarations=do not insert
 org.eclipse.jdt.core.formatter.brace_position_for_array_initializer=end_of_line
-org.eclipse.jdt.core.formatter.brace_position_for_block=end_of_line
-org.eclipse.jdt.core.formatter.brace_position_for_block_in_case=end_of_line
-org.eclipse.jdt.core.formatter.brace_position_for_constructor_declaration=end_of_line
-org.eclipse.jdt.core.formatter.brace_position_for_enum_constant=end_of_line
-org.eclipse.jdt.core.formatter.brace_position_for_enum_declaration=end_of_line
-org.eclipse.jdt.core.formatter.brace_position_for_method_declaration=end_of_line
-org.eclipse.jdt.core.formatter.brace_position_for_switch=end_of_line
-org.eclipse.jdt.core.formatter.brace_position_for_type_declaration=end_of_line
-org.eclipse.jdt.core.formatter.comment.clear_blank_lines=false
-org.eclipse.jdt.core.formatter.comment.format_comments=false
-org.eclipse.jdt.core.formatter.comment.format_header=false
-org.eclipse.jdt.core.formatter.comment.format_html=true
-org.eclipse.jdt.core.formatter.comment.format_source_code=true
-org.eclipse.jdt.core.formatter.comment.indent_parameter_description=true
-org.eclipse.jdt.core.formatter.comment.indent_root_tags=true
-org.eclipse.jdt.core.formatter.comment.insert_new_line_before_root_tags=insert
-org.eclipse.jdt.core.formatter.comment.insert_new_line_for_parameter=insert
-org.eclipse.jdt.core.formatter.comment.line_length=80
-org.eclipse.jdt.core.formatter.compact_else_if=true
-org.eclipse.jdt.core.formatter.continuation_indentation=2
-org.eclipse.jdt.core.formatter.continuation_indentation_for_array_initializer=2
-org.eclipse.jdt.core.formatter.format_guardian_clause_on_one_line=false
-org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_annotation_declaration_header=true
 org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_enum_constant_header=true
-org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_enum_declaration_header=true
 org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_type_header=true
-org.eclipse.jdt.core.formatter.indent_breaks_compare_to_cases=true
-org.eclipse.jdt.core.formatter.indent_empty_lines=false
+org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_parameters=do not insert
+org.eclipse.jdt.core.formatter.blank_lines_before_field=1
+org.eclipse.jdt.core.formatter.insert_new_line_in_empty_type_declaration=insert
 org.eclipse.jdt.core.formatter.indent_statements_compare_to_block=true
-org.eclipse.jdt.core.formatter.indent_statements_compare_to_body=true
-org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_cases=true
-org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_switch=false
-org.eclipse.jdt.core.formatter.indentation.size=8
-org.eclipse.jdt.core.formatter.insert_new_line_after_annotation=insert
-org.eclipse.jdt.core.formatter.insert_new_line_after_opening_brace_in_array_initializer=do not insert
-org.eclipse.jdt.core.formatter.insert_new_line_at_end_of_file_if_missing=do not insert
-org.eclipse.jdt.core.formatter.insert_new_line_before_catch_in_try_statement=do not insert
-org.eclipse.jdt.core.formatter.insert_new_line_before_closing_brace_in_array_initializer=do not insert
-org.eclipse.jdt.core.formatter.insert_new_line_before_else_in_if_statement=do not insert
-org.eclipse.jdt.core.formatter.insert_new_line_before_finally_in_try_statement=do not insert
-org.eclipse.jdt.core.formatter.insert_new_line_before_while_in_do_statement=do not insert
-org.eclipse.jdt.core.formatter.insert_new_line_in_empty_annotation_declaration=insert
-org.eclipse.jdt.core.formatter.insert_new_line_in_empty_anonymous_type_declaration=insert
-org.eclipse.jdt.core.formatter.insert_new_line_in_empty_block=insert
-org.eclipse.jdt.core.formatter.insert_new_line_in_empty_enum_constant=insert
-org.eclipse.jdt.core.formatter.insert_new_line_in_empty_enum_declaration=insert
-org.eclipse.jdt.core.formatter.insert_new_line_in_empty_method_body=insert
-org.eclipse.jdt.core.formatter.insert_new_line_in_empty_type_declaration=insert
-org.eclipse.jdt.core.formatter.insert_space_after_and_in_type_parameter=insert
-org.eclipse.jdt.core.formatter.insert_space_after_assignment_operator=insert
-org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation=do not insert
-org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation_type_declaration=do not insert
-org.eclipse.jdt.core.formatter.insert_space_after_binary_operator=insert
-org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_arguments=insert
-org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_parameters=insert
-org.eclipse.jdt.core.formatter.insert_space_after_closing_brace_in_block=insert
-org.eclipse.jdt.core.formatter.insert_space_after_closing_paren_in_cast=insert
-org.eclipse.jdt.core.formatter.insert_space_after_colon_in_assert=insert
+org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_declaration_parameters=do not insert
 org.eclipse.jdt.core.formatter.insert_space_after_colon_in_case=insert
-org.eclipse.jdt.core.formatter.insert_space_after_colon_in_conditional=insert
-org.eclipse.jdt.core.formatter.insert_space_after_colon_in_for=insert
-org.eclipse.jdt.core.formatter.insert_space_after_colon_in_labeled_statement=insert
-org.eclipse.jdt.core.formatter.insert_space_after_comma_in_allocation_expression=insert
+org.eclipse.jdt.core.formatter.keep_empty_array_initializer_on_one_line=false
+org.eclipse.jdt.core.formatter.insert_space_before_binary_operator=insert
 org.eclipse.jdt.core.formatter.insert_space_after_comma_in_annotation=insert
-org.eclipse.jdt.core.formatter.insert_space_after_comma_in_array_initializer=insert
-org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_parameters=insert
-org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_throws=insert
+org.eclipse.jdt.core.formatter.insert_space_after_closing_brace_in_block=insert
+org.eclipse.jdt.core.formatter.put_empty_statement_on_new_line=true
+org.eclipse.jdt.core.formatter.brace_position_for_method_declaration=end_of_line
+org.eclipse.jdt.core.formatter.insert_space_before_prefix_operator=do not insert
+org.eclipse.jdt.core.formatter.insert_space_before_comma_in_superinterfaces=do not insert
 org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_constant_arguments=insert
-org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_declarations=insert
-org.eclipse.jdt.core.formatter.insert_space_after_comma_in_explicitconstructorcall_arguments=insert
-org.eclipse.jdt.core.formatter.insert_space_after_comma_in_for_increments=insert
-org.eclipse.jdt.core.formatter.insert_space_after_comma_in_for_inits=insert
-org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_declaration_parameters=insert
-org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_declaration_throws=insert
-org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_invocation_arguments=insert
-org.eclipse.jdt.core.formatter.insert_space_after_comma_in_multiple_field_declarations=insert
-org.eclipse.jdt.core.formatter.insert_space_after_comma_in_multiple_local_declarations=insert
-org.eclipse.jdt.core.formatter.insert_space_after_comma_in_parameterized_type_reference=insert
-org.eclipse.jdt.core.formatter.insert_space_after_comma_in_superinterfaces=insert
-org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_arguments=insert
-org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_parameters=insert
-org.eclipse.jdt.core.formatter.insert_space_after_ellipsis=insert
-org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_parameterized_type_reference=do not insert
-org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_arguments=do not insert
-org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_parameters=do not insert
-org.eclipse.jdt.core.formatter.insert_space_after_opening_brace_in_array_initializer=insert
-org.eclipse.jdt.core.formatter.insert_space_after_opening_bracket_in_array_allocation_expression=do not insert
-org.eclipse.jdt.core.formatter.insert_space_after_opening_bracket_in_array_reference=do not insert
-org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_annotation=do not insert
-org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_cast=do not insert
-org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_catch=do not insert
-org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_constructor_declaration=do not insert
-org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_enum_constant=do not insert
-org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_for=do not insert
-org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_if=do not insert
-org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_method_declaration=do not insert
-org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_method_invocation=do not insert
 org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_parenthesized_expression=do not insert
-org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_switch=do not insert
-org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_synchronized=do not insert
-org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_while=do not insert
-org.eclipse.jdt.core.formatter.insert_space_after_postfix_operator=do not insert
-org.eclipse.jdt.core.formatter.insert_space_after_prefix_operator=do not insert
+org.eclipse.jdt.core.formatter.comment.format_comments=false
+org.eclipse.jdt.core.formatter.blank_lines_before_first_class_body_declaration=0
+org.eclipse.jdt.core.formatter.lineSplit=131
+org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_enum_constant=do not insert
 org.eclipse.jdt.core.formatter.insert_space_after_question_in_conditional=insert
+org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_if=do not insert
+org.eclipse.jdt.core.formatter.insert_space_after_comma_in_explicitconstructorcall_arguments=insert
 org.eclipse.jdt.core.formatter.insert_space_after_question_in_wildcard=do not insert
-org.eclipse.jdt.core.formatter.insert_space_after_semicolon_in_for=insert
-org.eclipse.jdt.core.formatter.insert_space_after_unary_operator=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_and_in_type_parameter=insert
-org.eclipse.jdt.core.formatter.insert_space_before_assignment_operator=insert
-org.eclipse.jdt.core.formatter.insert_space_before_at_in_annotation_type_declaration=insert
-org.eclipse.jdt.core.formatter.insert_space_before_binary_operator=insert
-org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_parameterized_type_reference=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_arguments=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_parameters=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_closing_brace_in_array_initializer=insert
-org.eclipse.jdt.core.formatter.insert_space_before_closing_bracket_in_array_allocation_expression=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_closing_bracket_in_array_reference=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_annotation=do not insert
+org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_enum_constant=do not insert
+org.eclipse.jdt.core.formatter.blank_lines_after_imports=1
+org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_synchronized=do not insert
+org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_block=insert
+org.eclipse.jdt.core.formatter.insert_new_line_before_else_in_if_statement=do not insert
+org.eclipse.jdt.core.formatter.insert_new_line_after_annotation=insert
+org.eclipse.jdt.core.formatter.alignment_for_throws_clause_in_method_declaration=16
 org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_cast=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_catch=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_constructor_declaration=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_enum_constant=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_for=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_if=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_method_declaration=do not insert
+org.eclipse.jdt.core.formatter.insert_space_before_comma_in_constructor_declaration_throws=do not insert
 org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_method_invocation=do not insert
+org.eclipse.jdt.core.formatter.alignment_for_arguments_in_explicit_constructor_call=16
+org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_enum_declaration=insert
+org.eclipse.jdt.core.formatter.insert_space_before_closing_brace_in_array_initializer=insert
+org.eclipse.jdt.core.formatter.alignment_for_arguments_in_qualified_allocation_expression=16
+org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_constructor_declaration=do not insert
+org.eclipse.jdt.core.formatter.insert_space_after_semicolon_in_for=insert
+org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_allocation_expression=do not insert
+org.eclipse.jdt.core.formatter.blank_lines_before_package=0
+org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_arguments=insert
+org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_parameters=do not insert
+org.eclipse.jdt.core.formatter.brace_position_for_type_declaration=end_of_line
+org.eclipse.jdt.core.formatter.insert_space_after_closing_paren_in_cast=insert
+org.eclipse.jdt.core.formatter.brace_position_for_anonymous_type_declaration=end_of_line
+org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_while=do not insert
+org.eclipse.jdt.core.formatter.insert_new_line_in_empty_method_body=insert
+org.eclipse.jdt.core.formatter.keep_else_statement_on_same_line=false
+org.eclipse.jdt.core.formatter.align_type_members_on_columns=false
+org.eclipse.jdt.core.formatter.insert_space_after_opening_bracket_in_array_allocation_expression=do not insert
+org.eclipse.jdt.core.formatter.blank_lines_between_type_declarations=1
+org.eclipse.jdt.core.formatter.insert_new_line_after_opening_brace_in_array_initializer=do not insert
+org.eclipse.jdt.core.formatter.insert_space_after_binary_operator=insert
+org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_annotation_type_member_declaration=do not insert
+org.eclipse.jdt.core.formatter.insert_new_line_before_closing_brace_in_array_initializer=do not insert
+org.eclipse.jdt.core.formatter.insert_space_before_comma_in_constructor_declaration_parameters=do not insert
+org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_parameterized_type_reference=do not insert
+org.eclipse.jdt.core.formatter.insert_space_after_prefix_operator=do not insert
+org.eclipse.jdt.core.formatter.insert_space_before_comma_in_annotation=do not insert
+org.eclipse.jdt.core.formatter.brace_position_for_constructor_declaration=end_of_line
+org.eclipse.jdt.core.formatter.insert_space_before_comma_in_parameterized_type_reference=do not insert
 org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_parenthesized_expression=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_switch=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_synchronized=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_while=do not insert
+org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_switch=false
+org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_cast=do not insert
+org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_for=insert
+org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_type_reference=do not insert
+org.eclipse.jdt.core.formatter.comment.format_header=false
+org.eclipse.jdt.core.formatter.insert_new_line_in_empty_block=insert
+org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_parameterized_type_reference=do not insert
+eclipse.preferences.version=1
+org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_invocation_arguments=do not insert
+org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_arguments=do not insert
+org.eclipse.jdt.core.formatter.insert_space_before_comma_in_allocation_expression=do not insert
 org.eclipse.jdt.core.formatter.insert_space_before_colon_in_assert=insert
+org.eclipse.jdt.core.formatter.alignment_for_superclass_in_type_declaration=16
+org.eclipse.jdt.core.formatter.insert_new_line_in_empty_anonymous_type_declaration=insert
+org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_enum_declaration=16
+org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_method_declaration=do not insert
+org.eclipse.jdt.core.formatter.insert_space_before_comma_in_enum_declarations=do not insert
+org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation=do not insert
+org.eclipse.jdt.core.formatter.alignment_for_conditional_expression=80
+org.eclipse.jdt.core.formatter.blank_lines_before_new_chunk=1
+org.eclipse.jdt.core.formatter.brace_position_for_annotation_type_declaration=end_of_line
+org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_annotation=do not insert
+org.eclipse.jdt.core.formatter.insert_space_before_closing_bracket_in_array_reference=do not insert
+org.eclipse.jdt.core.formatter.alignment_for_multiple_fields=16
+org.eclipse.jdt.core.formatter.insert_space_before_comma_in_for_inits=do not insert
+org.eclipse.jdt.core.formatter.alignment_for_arguments_in_method_invocation=16
+org.eclipse.jdt.core.formatter.alignment_for_expressions_in_array_initializer=16
+org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_arguments=insert
+org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_constructor_declaration=do not insert
+org.eclipse.jdt.core.formatter.keep_imple_if_on_one_line=false
+org.eclipse.jdt.core.formatter.insert_space_before_parenthesized_expression_in_return=insert
+org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_while=insert
+org.eclipse.jdt.core.formatter.insert_space_after_comma_in_parameterized_type_reference=insert
+org.eclipse.jdt.core.formatter.alignment_for_arguments_in_enum_constant=16
+org.eclipse.jdt.core.formatter.indentation.size=8
+org.eclipse.jdt.core.formatter.alignment_for_assignment=0
+org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_declaration_parameters=insert
+org.eclipse.jdt.core.formatter.blank_lines_after_package=1
+org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_declaration_throws=insert
 org.eclipse.jdt.core.formatter.insert_space_before_colon_in_case=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_colon_in_conditional=insert
-org.eclipse.jdt.core.formatter.insert_space_before_colon_in_default=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_colon_in_for=insert
 org.eclipse.jdt.core.formatter.insert_space_before_colon_in_labeled_statement=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_allocation_expression=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_annotation=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_array_initializer=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_constructor_declaration_parameters=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_constructor_declaration_throws=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_enum_constant_arguments=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_enum_declarations=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_explicitconstructorcall_arguments=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_for_increments=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_for_inits=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_declaration_parameters=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_declaration_throws=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_invocation_arguments=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_multiple_field_declarations=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_multiple_local_declarations=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_parameterized_type_reference=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_superinterfaces=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_arguments=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_parameters=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_ellipsis=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_parameterized_type_reference=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_arguments=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_parameters=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_annotation_type_declaration=insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_anonymous_type_declaration=insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_array_initializer=insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_block=insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_constructor_declaration=insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_enum_constant=insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_enum_declaration=insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_method_declaration=insert
+org.eclipse.jdt.core.formatter.insert_space_after_comma_in_multiple_field_declarations=insert
+org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_parameters=insert
 org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_switch=insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_type_declaration=insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_allocation_expression=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_reference=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_type_reference=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_annotation=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_annotation_type_member_declaration=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_catch=insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_constructor_declaration=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_enum_constant=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_for=insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_if=insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_method_declaration=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_method_invocation=do not insert
+org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_enum_constant=do not insert
+org.eclipse.jdt.core.formatter.insert_new_line_in_empty_annotation_declaration=insert
+org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_catch=do not insert
+org.eclipse.jdt.core.formatter.indent_empty_lines=false
 org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_parenthesized_expression=do not insert
+org.eclipse.jdt.core.formatter.insert_space_before_semicolon=do not insert
+org.eclipse.jdt.core.formatter.alignment_for_parameters_in_constructor_declaration=16
+org.eclipse.jdt.core.formatter.alignment_for_binary_expression=16
+org.eclipse.jdt.core.formatter.insert_new_line_in_empty_enum_declaration=insert
+org.eclipse.jdt.core.formatter.alignment_for_throws_clause_in_constructor_declaration=16
+org.eclipse.jdt.core.formatter.insert_new_line_before_finally_in_try_statement=do not insert
+org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_constructor_declaration=insert
+org.eclipse.jdt.core.formatter.indent_breaks_compare_to_cases=true
+org.eclipse.jdt.core.formatter.compact_else_if=true
+org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_for=do not insert
+org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_while=do not insert
+org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_declaration_throws=do not insert
+org.eclipse.jdt.core.formatter.insert_space_before_comma_in_for_increments=do not insert
+org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_method_declaration=do not insert
+org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_constructor_declaration=do not insert
 org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_switch=insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_synchronized=insert
-org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_while=insert
-org.eclipse.jdt.core.formatter.insert_space_before_parenthesized_expression_in_return=insert
-org.eclipse.jdt.core.formatter.insert_space_before_postfix_operator=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_prefix_operator=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_question_in_conditional=insert
-org.eclipse.jdt.core.formatter.insert_space_before_question_in_wildcard=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_semicolon=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_semicolon_in_for=do not insert
-org.eclipse.jdt.core.formatter.insert_space_before_unary_operator=do not insert
-org.eclipse.jdt.core.formatter.insert_space_between_brackets_in_array_type_reference=do not insert
-org.eclipse.jdt.core.formatter.insert_space_between_empty_braces_in_array_initializer=do not insert
-org.eclipse.jdt.core.formatter.insert_space_between_empty_brackets_in_array_allocation_expression=do not insert
-org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_annotation_type_member_declaration=do not insert
-org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_constructor_declaration=do not insert
-org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_enum_constant=do not insert
-org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_method_declaration=do not insert
-org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_method_invocation=do not insert
-org.eclipse.jdt.core.formatter.keep_else_statement_on_same_line=false
-org.eclipse.jdt.core.formatter.keep_empty_array_initializer_on_one_line=false
-org.eclipse.jdt.core.formatter.keep_imple_if_on_one_line=false
-org.eclipse.jdt.core.formatter.keep_then_statement_on_same_line=false
-org.eclipse.jdt.core.formatter.lineSplit=131
-org.eclipse.jdt.core.formatter.number_of_blank_lines_at_beginning_of_method_body=0
-org.eclipse.jdt.core.formatter.number_of_empty_lines_to_preserve=1
-org.eclipse.jdt.core.formatter.put_empty_statement_on_new_line=true
-org.eclipse.jdt.core.formatter.tabulation.char=space
-org.eclipse.jdt.core.formatter.tabulation.size=4
-org.eclipse.jdt.core.formatter.use_tabs_only_for_leading_indentations=true
+org.eclipse.jdt.core.formatter.insert_space_before_comma_in_array_initializer=do not insert
+org.eclipse.jdt.core.formatter.insert_space_after_colon_in_for=insert
+org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_annotation=do not insert
+org.eclipse.jdt.core.compiler.source=1.5
+org.eclipse.jdt.core.formatter.comment.format_source_code=true
+org.eclipse.jdt.core.formatter.comment.line_length=80
+org.eclipse.jdt.core.formatter.insert_space_after_unary_operator=do not insert
+org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_enum_declaration_header=true
+org.eclipse.jdt.core.formatter.insert_space_after_comma_in_multiple_local_declarations=insert
+org.eclipse.jdt.core.formatter.continuation_indentation=2
+org.eclipse.jdt.core.formatter.insert_space_after_colon_in_assert=insert
Modified: trunk/datecalc-common/src/test/java/net/objectlab/kit/datecalc/common/AbstractDateCalculatorCombinationTest.java
===================================================================
--- trunk/datecalc-common/src/test/java/net/objectlab/kit/datecalc/common/AbstractDateCalculatorCombinationTest.java	2008-03-24 16:15:30 UTC (rev 259)
+++ trunk/datecalc-common/src/test/java/net/objectlab/kit/datecalc/common/AbstractDateCalculatorCombinationTest.java	2008-03-24 17:07:03 UTC (rev 260)
@@ -1,9 +1,9 @@
 /*
  * ObjectLab, http://www.objectlab.co.uk/open is sponsoring the ObjectLab Kit.
- * 
- * Based in London, we are world leaders in the design and development 
+ *
+ * Based in London, we are world leaders in the design and development
  * of bespoke applications for the securities financing markets.
- * 
+ *
  * <a href="http://www.objectlab.co.uk/open">Click here to learn more</a>
  *           ___  _     _           _   _          _
  *          / _ \| |__ (_) ___  ___| |_| |    __ _| |__
@@ -15,7 +15,7 @@
  *                     www.ObjectLab.co.uk
  *
  * $Id$
- * 
+ *
  * Copyright 2006 the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License"); you may not
@@ -77,7 +77,7 @@
 
     // -----------------------------------------------------------------------
     //
-    //    ObjectLab, world leaders in the design and development of bespoke 
+    //    ObjectLab, world leaders in the design and development of bespoke
     //          applications for the securities financing markets.
     //                         www.ObjectLab.co.uk
     //
@@ -137,7 +137,7 @@
         Assert.assertEquals("currentDate", localDate, combo.getCurrentBusinessDate());
         Assert.assertEquals("Holidays", 6, combo.getHolidayCalendar().getHolidays().size());
         Assert.assertEquals("Early Boundary", newDate("2006-01-01"), combo.getHolidayCalendar().getEarlyBoundary());
-        Assert.assertEquals("Late Boundary", newDate("2007-12-31"), combo.getHolidayCalendar().getLateBoundary());
+        Assert.assertEquals("Late Boundary", newDate("2020-12-31"), combo.getHolidayCalendar().getLateBoundary());
     }
 
     public void testNullCombination() {
@@ -169,7 +169,7 @@
         Assert.assertEquals("currentDate", localDate, combo.getCurrentBusinessDate());
         Assert.assertEquals("Holidays", 3, combo.getHolidayCalendar().getHolidays().size());
         Assert.assertEquals("Early Boundary", newDate("2005-01-01"), combo.getHolidayCalendar().getEarlyBoundary());
-        Assert.assertEquals("Late Boundary", newDate("2007-12-31"), combo.getHolidayCalendar().getLateBoundary());
+        Assert.assertEquals("Late Boundary", newDate("2021-12-31"), combo.getHolidayCalendar().getLateBoundary());
     }
 
     public void testInvalidEarlyBoundary() {
@@ -271,10 +271,10 @@
 
 /*
  * ObjectLab, http://www.objectlab.co.uk/open is sponsoring the ObjectLab Kit.
- * 
- * Based in London, we are world leaders in the design and development 
+ *
+ * Based in London, we are world leaders in the design and development
  * of bespoke applications for the securities financing markets.
- * 
+ *
  * <a href="http://www.objectlab.co.uk/open">Click here to learn more about us</a>
  *           ___  _     _           _   _          _
  *          / _ \| |__ (_) ___  ___| |_| |    __ _| |__
Modified: trunk/datecalc-common/src/test/java/net/objectlab/kit/datecalc/common/AbstractDateTestCase.java
===================================================================
--- trunk/datecalc-common/src/test/java/net/objectlab/kit/datecalc/common/AbstractDateTestCase.java	2008-03-24 16:15:30 UTC (rev 259)
+++ trunk/datecalc-common/src/test/java/net/objectlab/kit/datecalc/common/AbstractDateTestCase.java	2008-03-24 17:07:03 UTC (rev 260)
@@ -1,9 +1,9 @@
 /*
  * ObjectLab, http://www.objectlab.co.uk/open is sponsoring the ObjectLab Kit.
- * 
- * Based in London, we are world leaders in the design and development 
+ *
+ * Based in London, we are world leaders in the design and development
  * of bespoke applications for the securities financing markets.
- * 
+ *
  * <a href="http://www.objectlab.co.uk/open">Click here to learn more</a>
  *           ___  _     _           _   _          _
  *          / _ \| |__ (_) ___  ___| |_| |    __ _| |__
@@ -15,7 +15,7 @@
  *                     www.ObjectLab.co.uk
  *
  * $Id$
- * 
+ *
  * Copyright 2006 the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License"); you may not
@@ -81,12 +81,12 @@
      * @return
      */
     protected HolidayCalendar<E> createUSHolidayCalendar() {
-        return new DefaultHolidayCalendar<E>(createUSHolidays(), newDate("2005-01-01"), newDate("2007-12-31"));
+        return new DefaultHolidayCalendar<E>(createUSHolidays(), newDate("2005-01-01"), newDate("2021-12-31"));
     }
 
     // -----------------------------------------------------------------------
     //
-    //    ObjectLab, world leaders in the design and development of bespoke 
+    //    ObjectLab, world leaders in the design and development of bespoke
     //          applications for the securities financing markets.
     //                         www.ObjectLab.co.uk
     //
@@ -114,7 +114,7 @@
 
     /**
      * Based on UK Holidays for Aug 2006.
-     * 
+     *
      * @param startDate
      * @param tenor
      * @param spotLag
@@ -132,7 +132,7 @@
 
     /**
      * Based on UK Holidays for Aug 2006.
-     * 
+     *
      * @param startDate
      * @param tenor
      * @param spotLag
@@ -150,10 +150,10 @@
 
 /*
  * ObjectLab, http://www.objectlab.co.uk/open is sponsoring the ObjectLab Kit.
- * 
- * Based in London, we are world leaders in the design and development 
+ *
+ * Based in London, we are world leaders in the design and development
  * of bespoke applications for the securities financing markets.
- * 
+ *
  * <a href="http://www.objectlab.co.uk/open">Click here to learn more about us</a>
  *           ___  _     _           _   _          _
  *          / _ \| |__ (_) ___  ___| |_| |    __ _| |__
Modified: trunk/datecalc-jdk/.classpath
===================================================================
--- trunk/datecalc-jdk/.classpath	2008-03-24 16:15:30 UTC (rev 259)
+++ trunk/datecalc-jdk/.classpath	2008-03-24 17:07:03 UTC (rev 260)
@@ -1,9 +1,9 @@
-<?xml version="1.0" encoding="UTF-8"?>
 <classpath>
-	<classpathentry output="target/classes" kind="src" path="src/main/java"/>
-	<classpathentry output="target/test-classes" kind="src" path="src/test/java"/>
-	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
-	<classpathentry kind="var" path="M2_REPO/junit/junit/3.8.1/junit-3.8.1.jar"/>
-	<classpathentry combineaccessrules="false" kind="src" path="/datecalc-common"/>
-	<classpathentry kind="output" path="target/classes"/>
-</classpath>
+  <classpathentry kind="src" path="C:/project/objectlabkit/datecalc-common/target/test-classes" output="target/test-classes" including="**/*.class" excluding="**/*.java"/>
+  <classpathentry kind="src" path="src/main/java"/>
+  <classpathentry kind="src" path="src/test/java" output="target/test-classes"/>
+  <classpathentry kind="output" path="target/classes"/>
+  <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
+  <classpathentry kind="src" path="/datecalc-common"/>
+  <classpathentry kind="var" path="M2_REPO/junit/junit/3.8.1/junit-3.8.1.jar" sourcepath="M2_REPO/junit/junit/3.8.1/junit-3.8.1-sources.jar"/>
+</classpath>
\ No newline at end of file
Modified: trunk/datecalc-jdk/.project
===================================================================
--- trunk/datecalc-jdk/.project	2008-03-24 16:15:30 UTC (rev 259)
+++ trunk/datecalc-jdk/.project	2008-03-24 17:07:03 UTC (rev 260)
@@ -1,16 +1,15 @@
-<projectDescription>
-  <name>datecalc-jdk</name>
-  <comment>Date Calculator methods for JDK</comment>
-  <projects>
-    <project>datecalc-common</project>
-  </projects>
-  <buildSpec>
-    <buildCommand>
-      <name>org.eclipse.jdt.core.javabuilder</name>
-      <arguments/>
-    </buildCommand>
-  </buildSpec>
-  <natures>
-    <nature>org.eclipse.jdt.core.javanature</nature>
-  </natures>
+<projectDescription>
+  <name>datecalc-jdk</name>
+  <comment>Date Calculator methods for JDK</comment>
+  <projects>
+    <project>datecalc-common</project>
+  </projects>
+  <buildSpec>
+    <buildCommand>
+      <name>org.eclipse.jdt.core.javabuilder</name>
+    </buildCommand>
+  </buildSpec>
+  <natures>
+    <nature>org.eclipse.jdt.core.javanature</nature>
+  </natures>
 </projectDescription>
\ No newline at end of file
Modified: trunk/datecalc-jdk/.settings/org.eclipse.jdt.core.prefs
===================================================================
--- trunk/datecalc-jdk/.settings/org.eclipse.jdt.core.prefs	2008-03-24 16:15:30 UTC (rev 259)
+++ trunk/datecalc-jdk/.settings/org.eclipse.jdt.core.prefs	2008-03-24 17:07:03 UTC (rev 260)
@@ -1,248 +1,251 @@
-#Wed Jan 03 23:20:26 GMT 2007
-eclipse.preferences.version=1
-org.eclipse.jdt.core.formatter.align_type_members_on_columns=false
+#Mon Mar 24 16:47:07 GMT 2008
+org.eclipse.jdt.core.formatter.brace_position_for_enum_constant=end_of_line
+org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_method_invocation=do not insert
+org.eclipse.jdt.core.formatter.format_guardian_clause_on_one_line=false
+org.eclipse.jdt.core.formatter.comment.indent_root_tags=true
+org.eclipse.jdt.core.formatter.number_of_blank_lines_at_beginning_of_method_body=0
+org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_synchronized=insert
+org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_switch=do not insert
+org.eclipse.jdt.core.formatter.insert_space_after_comma_in_for_inits=insert
+org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_method_invocation=do not insert
+org.eclipse.jdt.core.compiler.compliance=1.5
+org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_annotation_type_declaration=insert
+org.eclipse.jdt.core.formatter.insert_space_after_opening_brace_in_array_initializer=insert
+org.eclipse.jdt.core.formatter.insert_new_line_before_catch_in_try_statement=do not insert
+org.eclipse.jdt.core.formatter.insert_space_before_closing_bracket_in_array_allocation_expression=do not insert
+org.eclipse.jdt.core.formatter.insert_space_between_brackets_in_array_type_reference=do not insert
+org.eclipse.jdt.core.formatter.brace_position_for_switch=end_of_line
+org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_parameters=insert
+org.eclipse.jdt.core.formatter.insert_space_before_postfix_operator=do not insert
+org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_enum_constant=insert
+org.eclipse.jdt.core.formatter.insert_new_line_at_end_of_file_if_missing=do not insert
+org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_catch=insert
+org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_method_declaration=do not insert
+org.eclipse.jdt.core.formatter.brace_position_for_enum_declaration=end_of_line
 org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression=16
-org.eclipse.jdt.core.formatter.alignment_for_arguments_in_enum_constant=16
-org.eclipse.jdt.core.formatter.alignment_for_arguments_in_explicit_constructor_call=16
-org.eclipse.jdt.core.formatter.alignment_for_arguments_in_method_invocation=16
-org.eclipse.jdt.core.formatter.alignment_for_arguments_in_qualified_allocation_expression=16
-org.eclipse.jdt.core.formatter.alignment_for_assignment=0
-org.eclipse.jdt.core.formatter.alignment_for_binary_expression=16
-org.eclipse.jdt.core.formatter.alignment_for_compact_if=16
-org.eclipse.jdt.core.formatter.alignment_for_conditional_expression=80
+org.eclipse.jdt.core.formatter.continuation_indentation_for_array_initializer=2
+org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_throws=insert
+org.eclipse.jdt.core.formatter.blank_lines_before_method=1
+org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_anonymous_type_declaration=insert
+org.eclipse.jdt.core.formatter.insert_space_after_assignment_operator=insert
+org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_annotation_declaration_header=true
+org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_method_declaration=do not insert
+org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_array_initializer=insert
+org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_annotation_type_member_declaration=do not insert
+org.eclipse.jdt.core.formatter.comment.format_html=true
+org.eclipse.jdt.core.formatter.insert_space_before_comma_in_explicitconstructorcall_arguments=do not insert
+org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_parameterized_type_reference=do not insert
+org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_annotation=do not insert
+org.eclipse.jdt.core.formatter.number_of_empty_lines_to_preserve=1
+org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_declarations=insert
+org.eclipse.jdt.core.formatter.comment.clear_blank_lines=false
+org.eclipse.jdt.core.formatter.comment.insert_new_line_before_root_tags=insert
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
+org.eclipse.jdt.core.formatter.insert_new_line_before_while_in_do_statement=do not insert
+org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_parameters=do not insert
+org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_enum_constant=do not insert
+org.eclipse.jdt.core.formatter.alignment_for_selector_in_method_invocation=16
+org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation_type_declaration=do not insert
+org.eclipse.jdt.core.formatter.insert_space_before_question_in_conditional=insert
 org.eclipse.jdt.core.formatter.alignment_for_enum_constants=0
-org.eclipse.jdt.core.formatter.alignment_for_expressions_in_array_initializer=16
-org.eclipse.jdt.core.formatter.alignment_for_multiple_fields=16
-org.eclipse.jdt.core.formatter.alignment_for_parameters_in_constructor_declaration=16
+org.eclipse.jdt.core.formatter.tabulation.size=4
+org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_type_declaration=insert
+org.eclipse.jdt.core.formatter.insert_new_line_in_empty_enum_constant=insert
+org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_catch=do not insert
+org.eclipse.jdt.core.formatter.comment.insert_new_line_for_parameter=insert
+org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_method_invocation=do not insert
+org.eclipse.jdt.core.formatter.indent_statements_compare_to_body=true
+org.eclipse.jdt.core.formatter.insert_space_before_colon_in_conditional=insert
+org.eclipse.jdt.core.formatter.comment.indent_parameter_description=true
+org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_method_declaration=insert
+org.eclipse.jdt.core.formatter.keep_then_statement_on_same_line=false
+org.eclipse.jdt.core.formatter.tabulation.char=space
+org.eclipse.jdt.core.formatter.insert_space_between_empty_brackets_in_array_allocation_expression=do not insert
+org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_for=do not insert
+org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_synchronized=do not insert
+org.eclipse.jdt.core.formatter.insert_space_after_comma_in_array_initializer=insert
+org.eclipse.jdt.core.formatter.insert_space_after_colon_in_labeled_statement=insert
+org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_constructor_declaration=do not insert
+org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_arguments=do not insert
+org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_if=do not insert
+org.eclipse.jdt.core.formatter.insert_space_after_opening_bracket_in_array_reference=do not insert
+org.eclipse.jdt.core.formatter.insert_space_afte...
 
[truncated message content] | 
| 
      
      
      From: <be...@us...> - 2008-03-24 16:16:05
      
     | 
| Revision: 259
          http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=259&view=rev
Author:   benoitx
Date:     2008-03-24 09:15:30 -0700 (Mon, 24 Mar 2008)
Log Message:
-----------
Update to Joda time 1.5
Modified Paths:
--------------
    trunk/datecalc-common/qalab.xml
    trunk/datecalc-jdk/qalab.xml
    trunk/datecalc-joda/qalab.xml
    trunk/src/site/changes.xml
Property Changed:
----------------
    trunk/src/site/statsvn/
Modified: trunk/datecalc-common/qalab.xml
===================================================================
--- trunk/datecalc-common/qalab.xml	2008-03-24 15:50:17 UTC (rev 258)
+++ trunk/datecalc-common/qalab.xml	2008-03-24 16:15:30 UTC (rev 259)
@@ -189,6 +189,14 @@
             project="objectlabkit" statvalue="45" type="cobertura-line"/>
         <summaryresult date="2007-01-22" filecount="20" module="common"
             project="objectlabkit" statvalue="46" type="cobertura-branch"/>
+        <summaryresult date="2008-03-24" filecount="21" module="common"
+            project="objectlabkit" statvalue="1" type="checkstyle"/>
+        <summaryresult date="2008-03-24" filecount="2" module="common"
+            project="objectlabkit" statvalue="2" type="findbugs"/>
+        <summaryresult date="2008-03-24" filecount="20" module="common"
+            project="objectlabkit" statvalue="45" type="cobertura-line"/>
+        <summaryresult date="2008-03-24" filecount="20" module="common"
+            project="objectlabkit" statvalue="33" type="cobertura-branch"/>
     </summary>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_package.html"
@@ -275,6 +283,9 @@
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-line"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="1" type="findbugs"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-line"/>
+        <result date="2008-03-24" statvalue="92" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_WorkingWeek.java"
@@ -350,6 +361,8 @@
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="95" type="cobertura-line"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="95" type="cobertura-line"/>
+        <result date="2008-03-24" statvalue="90" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_TenorCode.java"
@@ -417,6 +430,8 @@
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-line"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-line"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_HolidayHandlerType.java"
@@ -453,6 +468,7 @@
         <result date="2007-01-05" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_PeriodCountBasis.java"
@@ -487,6 +503,7 @@
         <result date="2007-01-05" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_StandardTenor.java"
@@ -553,6 +570,8 @@
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="93" type="cobertura-line"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="93" type="cobertura-line"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_AbstractDateCalculator.java"
@@ -562,6 +581,8 @@
         <result date="2007-01-05" statvalue="1" type="checkstyle"/>
         <result date="2007-01-09" statvalue="1" type="checkstyle"/>
         <result date="2007-01-22" statvalue="1" type="checkstyle"/>
+        <result date="2008-03-24" statvalue="1" type="checkstyle"/>
+        <result date="2008-03-24" statvalue="1" type="findbugs"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_DateCalculatorGeneric.java"
@@ -624,6 +645,8 @@
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-line"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-line"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_HolidayHandler.java"
@@ -681,6 +704,8 @@
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-line"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-line"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_AbstractDateCalculatorFactory.java"
@@ -769,6 +794,8 @@
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-line"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-line"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_Utils.java"
@@ -819,6 +846,8 @@
         <result date="2007-01-09" statvalue="85" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="77" type="cobertura-line"/>
         <result date="2007-01-22" statvalue="85" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="77" type="cobertura-line"/>
+        <result date="2008-03-24" statvalue="64" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_IMMPeriod.java"
@@ -846,6 +875,7 @@
         <result date="2007-01-05" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_ExcelDateUtil.java"
@@ -893,6 +923,8 @@
         <result date="2007-01-09" statvalue="83" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="82" type="cobertura-line"/>
         <result date="2007-01-22" statvalue="83" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="82" type="cobertura-line"/>
+        <result date="2008-03-24" statvalue="83" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_IMMDateCalculator.java"
@@ -938,6 +970,8 @@
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-line"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-line"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_AbstractIMMDateCalculator.java"
@@ -963,6 +997,7 @@
         <result date="2007-01-05" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_KitCalculatorsFactory.java"
@@ -1004,6 +1039,8 @@
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-line"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-line"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_HolidayCalendar.java"
@@ -1017,6 +1054,8 @@
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-line"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-line"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_DefaultHolidayCalendar.java"
@@ -1031,6 +1070,7 @@
         <result date="2007-01-05" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-common-net_objectlab_kit_datecalc_common_AbstractDateCalculator.java"
Modified: trunk/datecalc-jdk/qalab.xml
===================================================================
--- trunk/datecalc-jdk/qalab.xml	2008-03-24 15:50:17 UTC (rev 258)
+++ trunk/datecalc-jdk/qalab.xml	2008-03-24 16:15:30 UTC (rev 259)
@@ -195,6 +195,14 @@
             project="objectlabkit" statvalue="100" type="cobertura-branch"/>
         <summaryresult date="2007-01-22" filecount="1" module="jdk"
             project="objectlabkit" statvalue="1" type="pmd"/>
+        <summaryresult date="2008-03-24" filecount="20" module="jdk"
+            project="objectlabkit" statvalue="2" type="checkstyle"/>
+        <summaryresult date="2008-03-24" filecount="19" module="jdk"
+            project="objectlabkit" statvalue="96" type="cobertura-line"/>
+        <summaryresult date="2008-03-24" filecount="19" module="jdk"
+            project="objectlabkit" statvalue="81" type="cobertura-branch"/>
+        <summaryresult date="2008-03-24" filecount="1" module="jdk"
+            project="objectlabkit" statvalue="1" type="pmd"/>
     </summary>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_package.html"
@@ -476,6 +484,8 @@
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-line"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-line"/>
+        <result date="2008-03-24" statvalue="78" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_DatePeriodCountCalculator.java"
@@ -530,6 +540,8 @@
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-line"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-line"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_ExcelDateUtil.java"
@@ -597,6 +609,8 @@
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="91" type="cobertura-line"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="91" type="cobertura-line"/>
+        <result date="2008-03-24" statvalue="75" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_JdkCalendarBaseDateCalculator.java"
@@ -817,6 +831,8 @@
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-line"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-line"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_CalendarForwardHandler.java"
@@ -860,6 +876,8 @@
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-line"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-line"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_CalendarModifiedFollowingHandler.java"
@@ -903,6 +921,8 @@
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-line"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-line"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_CalendarModifiedPreceedingHandler.java"
@@ -948,6 +968,8 @@
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-line"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-line"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_DateBackwardHandler.java"
@@ -993,6 +1015,8 @@
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-line"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-line"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_DateForwardHandler.java"
@@ -1036,6 +1060,8 @@
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-line"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-line"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_DateModifiedFollowingHandler.java"
@@ -1079,6 +1105,8 @@
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-line"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-line"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_DateModifiedPreceedingHandler.java"
@@ -1124,6 +1152,8 @@
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-line"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-line"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_CalendarDateCalculator.java"
@@ -1165,6 +1195,8 @@
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="88" type="cobertura-line"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="88" type="cobertura-line"/>
+        <result date="2008-03-24" statvalue="73" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_CalendarIMMDateCalculator.java"
@@ -1210,6 +1242,9 @@
         <result date="2007-01-22" statvalue="1" type="checkstyle"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-line"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="1" type="checkstyle"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-line"/>
+        <result date="2008-03-24" statvalue="74" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_CalendarKitCalculatorsFactory.java"
@@ -1255,6 +1290,10 @@
         <result date="2007-01-22" statvalue="100" type="cobertura-line"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="1" type="pmd"/>
+        <result date="2008-03-24" statvalue="1" type="checkstyle"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-line"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="1" type="pmd"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_DateDateCalculator.java"
@@ -1296,6 +1335,8 @@
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="89" type="cobertura-line"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="91" type="cobertura-line"/>
+        <result date="2008-03-24" statvalue="78" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_DateIMMDateCalculator.java"
@@ -1339,6 +1380,8 @@
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-line"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-line"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_DateKitCalculatorsFactory.java"
@@ -1380,6 +1423,8 @@
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-line"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-line"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_CalendarForwardUnlessNegativeHandler.java"
@@ -1395,6 +1440,8 @@
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-line"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-line"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_DateForwardUnlessNegativeHandler.java"
@@ -1410,6 +1457,8 @@
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-line"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-line"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-jdk-net_objectlab_kit_datecalc_jdk_CalendarBackwardHandler.java"
Modified: trunk/datecalc-joda/qalab.xml
===================================================================
--- trunk/datecalc-joda/qalab.xml	2008-03-24 15:50:17 UTC (rev 258)
+++ trunk/datecalc-joda/qalab.xml	2008-03-24 16:15:30 UTC (rev 259)
@@ -201,6 +201,14 @@
             project="objectlabkit" statvalue="100" type="cobertura-branch"/>
         <summaryresult date="2007-01-22" filecount="1" module="joda"
             project="objectlabkit" statvalue="1" type="pmd"/>
+        <summaryresult date="2008-03-24" filecount="22" module="joda"
+            project="objectlabkit" statvalue="2" type="checkstyle"/>
+        <summaryresult date="2008-03-24" filecount="21" module="joda"
+            project="objectlabkit" statvalue="96" type="cobertura-line"/>
+        <summaryresult date="2008-03-24" filecount="21" module="joda"
+            project="objectlabkit" statvalue="84" type="cobertura-branch"/>
+        <summaryresult date="2008-03-24" filecount="1" module="joda"
+            project="objectlabkit" statvalue="1" type="pmd"/>
     </summary>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_package.html"
@@ -362,6 +370,8 @@
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-line"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-line"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_BackwardHandler.java"
@@ -615,6 +625,8 @@
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="91" type="cobertura-line"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="91" type="cobertura-line"/>
+        <result date="2008-03-24" statvalue="75" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_LocalDateBackwardHandler.java"
@@ -664,6 +676,8 @@
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-line"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-line"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_LocalDateCalculator.java"
@@ -714,6 +728,8 @@
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="85" type="cobertura-line"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="85" type="cobertura-line"/>
+        <result date="2008-03-24" statvalue="70" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_LocalDateForwardHandler.java"
@@ -763,6 +779,8 @@
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-line"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-line"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_LocalDateModifiedFollowingHandler.java"
@@ -812,6 +830,8 @@
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-line"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-line"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_LocalDateModifiedPreceedingHandler.java"
@@ -861,6 +881,8 @@
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-line"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-line"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_YearMonthDayBackwardHandler.java"
@@ -910,6 +932,8 @@
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-line"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-line"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_YearMonthDayDateCalculator.java"
@@ -959,6 +983,8 @@
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="90" type="cobertura-line"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="92" type="cobertura-line"/>
+        <result date="2008-03-24" statvalue="82" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_YearMonthDayForwardHandler.java"
@@ -1008,6 +1034,8 @@
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-line"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-line"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_YearMonthDayModifiedFollowingHandler.java"
@@ -1057,6 +1085,8 @@
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-line"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-line"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_YearMonthDayModifiedPreceedingHandler.java"
@@ -1106,6 +1136,8 @@
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-line"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-line"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_JodaExcelDateUtil.java"
@@ -1151,6 +1183,8 @@
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="85" type="cobertura-line"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="85" type="cobertura-line"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_LocalDateIMMDateCalculator.java"
@@ -1200,6 +1234,10 @@
         <result date="2007-01-22" statvalue="100" type="cobertura-line"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="1" type="pmd"/>
+        <result date="2008-03-24" statvalue="2" type="checkstyle"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-line"/>
+        <result date="2008-03-24" statvalue="76" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="1" type="pmd"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_YearMonthDayIMMDateCalculator.java"
@@ -1245,6 +1283,8 @@
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-line"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-line"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_LocalDateKitCalculatorsFactory.java"
@@ -1284,6 +1324,8 @@
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-line"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-line"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_LocalDatePeriodCountCalculator.java"
@@ -1323,6 +1365,8 @@
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-line"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-line"/>
+        <result date="2008-03-24" statvalue="84" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_YearMonthDayKitCalculatorsFactory.java"
@@ -1362,6 +1406,8 @@
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="96" type="cobertura-line"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="96" type="cobertura-line"/>
+        <result date="2008-03-24" statvalue="92" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_YearMonthDayPeriodCountCalculator.java"
@@ -1401,6 +1447,8 @@
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-line"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-line"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_LocalDateForwardUnlessNegativeHandler.java"
@@ -1418,6 +1466,8 @@
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-line"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-line"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_YearMonthDayForwardUnlessNegativeHandler.java"
@@ -1433,6 +1483,8 @@
         <result date="2007-01-09" statvalue="100" type="cobertura-branch"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-line"/>
         <result date="2007-01-22" statvalue="100" type="cobertura-branch"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-line"/>
+        <result date="2008-03-24" statvalue="100" type="cobertura-branch"/>
     </file>
     <file
         id="objectlabkit-joda-net_objectlab_kit_datecalc_joda_LocalDateForwardUnlessNegativeHandler.java"
Modified: trunk/src/site/changes.xml
===================================================================
--- trunk/src/site/changes.xml	2008-03-24 15:50:17 UTC (rev 258)
+++ trunk/src/site/changes.xml	2008-03-24 16:15:30 UTC (rev 259)
@@ -9,6 +9,7 @@
   </properties>
   <body>
     <release version="1.1.0" date="2008-03-25" description="Maintenance">
+      <action dev="benoitx" type="add">Changed JODA dependency to 1.5</action>
       <action dev="benoitx" type="fix">fix NPE issue if the calendar name is null.</action>
       <action dev="benoitx" type="add" issue="1832345" due-to="Kieron Wilkinson">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>
Property changes on: trunk/src/site/statsvn
___________________________________________________________________
Name: svn:ignore
   - *.png
*.xml
objectlab-statcvs-xdoc.css
objectlab-statcvs.css
*.jar
*.jtree
repomap.txt
   + *.png
*.xml
objectlab-statcvs-xdoc.css
objectlab-statcvs.css
*.jar
*.jtree
repomap.txt
repomap-data.txt
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
 | 
| 
      
      
      From: <be...@us...> - 2008-03-24 15:50:19
      
     | 
| Revision: 258
          http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=258&view=rev
Author:   benoitx
Date:     2008-03-24 08:50:17 -0700 (Mon, 24 Mar 2008)
Log Message:
-----------
Upgrade to JODA 1.5
Modified Paths:
--------------
    trunk/datecalc-joda/pom.xml
    trunk/datecalc-joda/project.xml
Modified: trunk/datecalc-joda/pom.xml
===================================================================
--- trunk/datecalc-joda/pom.xml	2008-03-24 15:31:24 UTC (rev 257)
+++ trunk/datecalc-joda/pom.xml	2008-03-24 15:50:17 UTC (rev 258)
@@ -23,7 +23,7 @@
       <dependency>
          <groupId>joda-time</groupId>
          <artifactId>joda-time</artifactId>
-         <version>1.3</version>
+         <version>1.5</version>
       </dependency>
    </dependencies>
 
Modified: trunk/datecalc-joda/project.xml
===================================================================
--- trunk/datecalc-joda/project.xml	2008-03-24 15:31:24 UTC (rev 257)
+++ trunk/datecalc-joda/project.xml	2008-03-24 15:50:17 UTC (rev 258)
@@ -50,7 +50,7 @@
       <dependency>
          <groupId>joda-time</groupId>
          <artifactId>joda-time</artifactId>
-         <version>1.3</version>
+         <version>1.5</version>
          <type>jar</type>
       </dependency>
    </dependencies>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
 | 
| 
      
      
      From: <be...@us...> - 2008-03-24 15:31:29
      
     | 
| Revision: 257
          http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=257&view=rev
Author:   benoitx
Date:     2008-03-24 08:31:24 -0700 (Mon, 24 Mar 2008)
Log Message:
-----------
Prepare for 1.1.0 release.
Modified Paths:
--------------
    trunk/common-build/project.xml
    trunk/pom.xml
    trunk/src/site/changes.xml
Modified: trunk/common-build/project.xml
===================================================================
--- trunk/common-build/project.xml	2008-03-24 15:27:51 UTC (rev 256)
+++ trunk/common-build/project.xml	2008-03-24 15:31:24 UTC (rev 257)
@@ -27,7 +27,7 @@
    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
    <pomVersion>3</pomVersion>
    <groupId>net.objectlab.kit.datecalc</groupId>
-   <currentVersion>1.1.0-SNAPSHOT</currentVersion>
+   <currentVersion>1.1.0</currentVersion>
    <organization>
       <name>ObjectLab Financial Ltd</name>
       <url>http://www.objectlab.co.uk</url>
@@ -157,7 +157,7 @@
 
    <versions>
       <version>
-         <id>1.1.0-SNAPSHOT</id>
+         <id>1.1.0</id>
          <name>1.1.0</name>
          <tag>v1.1.0</tag>
       </version>
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml	2008-03-24 15:27:51 UTC (rev 256)
+++ trunk/pom.xml	2008-03-24 15:31:24 UTC (rev 257)
@@ -7,7 +7,7 @@
    <artifactId>datecalc</artifactId>
    <packaging>pom</packaging>
    <name>ObjectLab Kit</name>
-   <version>1.2.0-SNAPSHOT</version>
+   <version>1.1.0</version>
    <url>http://objectlabkit.sourceforge.net/</url>
    <description>
       ObjectLab Kit provides a generic Business Calendar for calculating dates given set(s) of holidays. Why
Modified: trunk/src/site/changes.xml
===================================================================
--- trunk/src/site/changes.xml	2008-03-24 15:27:51 UTC (rev 256)
+++ trunk/src/site/changes.xml	2008-03-24 15:31:24 UTC (rev 257)
@@ -8,7 +8,7 @@
     <author email="ki...@ob...">Benoit Xhenseval</author>
   </properties>
   <body>
-    <release version="1.1.0" date="in SVN" description="Maintenance">
+    <release version="1.1.0" date="2008-03-25" description="Maintenance">
       <action dev="benoitx" type="fix">fix NPE issue if the calendar name is null.</action>
       <action dev="benoitx" type="add" issue="1832345" due-to="Kieron Wilkinson">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>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
 | 
| 
      
      
      From: <be...@us...> - 2008-03-24 15:27:49
      
     | 
| Revision: 256
          http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=256&view=rev
Author:   benoitx
Date:     2008-03-24 08:27:51 -0700 (Mon, 24 Mar 2008)
Log Message:
-----------
Stupid error...
Modified Paths:
--------------
    trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/Tenor.java
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	2008-03-16 15:47:11 UTC (rev 255)
+++ trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/Tenor.java	2008-03-24 15:27:51 UTC (rev 256)
@@ -1,9 +1,9 @@
 /*
  * ObjectLab, http://www.objectlab.co.uk/open is sponsoring the ObjectLab Kit.
- * 
- * Based in London, we are world leaders in the design and development 
+ *
+ * Based in London, we are world leaders in the design and development
  * of bespoke applications for the securities financing markets.
- * 
+ *
  * <a href="http://www.objectlab.co.uk/open">Click here to learn more</a>
  *           ___  _     _           _   _          _
  *          / _ \| |__ (_) ___  ___| |_| |    __ _| |__
@@ -15,7 +15,7 @@
  *                     www.ObjectLab.co.uk
  *
  * $Id$
- * 
+ *
  * Copyright 2006 the original author or authors.
  *
  * Licensed under the Apache License, Version 2.0 (the "License"); you may not
@@ -32,14 +32,16 @@
  */
 package net.objectlab.kit.datecalc.common;
 
+import java.io.Serializable;
+
 /**
  * Holds only valid unit and TenorCode: Day, Week, Month, Year, IMM, Overnight,
  * Spot.
- * 
+ *
  * @author Benoit Xhenseval
  * @author $LastChangedBy$
  * @version $Revision$ $Date$
- * 
+ *
  */
 public class Tenor implements Serializable {
     private static final long serialVersionUID = 1L;
@@ -71,7 +73,7 @@
 
     // -----------------------------------------------------------------------
     //
-    //    ObjectLab, world leaders in the design and development of bespoke 
+    //    ObjectLab, world leaders in the design and development of bespoke
     //          applications for the securities financing markets.
     //                         www.ObjectLab.co.uk
     //
@@ -160,10 +162,10 @@
 
 /*
  * ObjectLab, http://www.objectlab.co.uk/open is sponsoring the ObjectLab Kit.
- * 
- * Based in London, we are world leaders in the design and development 
+ *
+ * Based in London, we are world leaders in the design and development
  * of bespoke applications for the securities financing markets.
- * 
+ *
  * <a href="http://www.objectlab.co.uk/open">Click here to learn more about us</a>
  *           ___  _     _           _   _          _
  *          / _ \| |__ (_) ___  ___| |_| |    __ _| |__
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
 | 
| 
      
      
      From: <ma...@us...> - 2008-03-16 15:47:17
      
     | 
| Revision: 255
          http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=255&view=rev
Author:   marchy
Date:     2008-03-16 08:47:11 -0700 (Sun, 16 Mar 2008)
Log Message:
-----------
Updated SVN URL
Modified Paths:
--------------
    trunk/common-build/project.xml
Modified: trunk/common-build/project.xml
===================================================================
--- trunk/common-build/project.xml	2008-03-14 01:07:42 UTC (rev 254)
+++ trunk/common-build/project.xml	2008-03-16 15:47:11 UTC (rev 255)
@@ -45,7 +45,7 @@
       /var/www/solutions/website/objectlab.co.uk/
    </siteDirectory>
    <repository>
-      <url>http://objectlabkit.svn.sourceforge.net/objectlabkit</url>
+      <url>http://objectlabkit.svn.sourceforge.net/svnroot/objectlabkit</url>
       <connection>
          scm:svn:https://objectlabkit.svn.sourceforge.net/svnroot/objectlabkit/trunk
       </connection>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
 | 
| 
      
      
      From: <ma...@us...> - 2008-03-14 01:14:32
      
     | 
| Revision: 254
          http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=254&view=rev
Author:   marchy
Date:     2008-03-13 18:07:42 -0700 (Thu, 13 Mar 2008)
Log Message:
-----------
Changed my e-mail address
Modified Paths:
--------------
    trunk/common-build/project.xml
Modified: trunk/common-build/project.xml
===================================================================
--- trunk/common-build/project.xml	2007-11-15 11:40:15 UTC (rev 253)
+++ trunk/common-build/project.xml	2008-03-14 01:07:42 UTC (rev 254)
@@ -69,7 +69,7 @@
       <developer>
          <name>Marcin Jekot</name>
          <id>marchy</id>
-         <email>marcin at jekot DOt net</email>
+         <email>marchy at users dot sourceforge dot net</email>
          <organization>ObjectLab Financial Ltd</organization>
          <roles>
             <role>Developer</role>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
 | 
| 
      
      
      From: <be...@us...> - 2007-11-15 11:40:11
      
     | 
| Revision: 253
          http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=253&view=rev
Author:   benoitx
Date:     2007-11-15 03:40:15 -0800 (Thu, 15 Nov 2007)
Log Message:
-----------
crediting Kieron Wilkinson for spotting the lack of Serializable on Tenor
Modified Paths:
--------------
    trunk/src/site/changes.xml
Modified: trunk/src/site/changes.xml
===================================================================
--- trunk/src/site/changes.xml	2007-11-15 10:33:21 UTC (rev 252)
+++ trunk/src/site/changes.xml	2007-11-15 11:40:15 UTC (rev 253)
@@ -10,7 +10,7 @@
   <body>
     <release version="1.1.0" date="in SVN" description="Maintenance">
       <action dev="benoitx" type="fix">fix NPE issue if the calendar name is null.</action>
-      <action dev="benoitx" type="add" issue="1832345" due-to="vyadh">Feature Requests item #1832345, make the Tenor Serializable</action>
+      <action dev="benoitx" type="add" issue="1832345" due-to="Kieron Wilkinson">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.
 | 
| 
      
      
      From: <be...@us...> - 2007-11-15 10:33:18
      
     | 
| Revision: 252
          http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=252&view=rev
Author:   benoitx
Date:     2007-11-15 02:33:21 -0800 (Thu, 15 Nov 2007)
Log Message:
-----------
Fix NPE issue if the calendar is null.
Modified Paths:
--------------
    trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/AbstractKitCalculatorsFactory.java
    trunk/src/site/changes.xml
Modified: trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/AbstractKitCalculatorsFactory.java
===================================================================
--- trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/AbstractKitCalculatorsFactory.java	2007-11-15 10:32:07 UTC (rev 251)
+++ trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/AbstractKitCalculatorsFactory.java	2007-11-15 10:33:21 UTC (rev 252)
@@ -108,9 +108,9 @@
      * @return true if the holiday name is registered.
      */
     public boolean isHolidayCalendarRegistered(final String name) {
-        return this.holidays.containsKey(name);
+        return name != null && this.holidays.containsKey(name);
     }
-    
+
     /**
      * @return an immutable Holiday Calendar that is registered, null if not registered.
      */
@@ -118,7 +118,6 @@
         return holidays.get(name);
     }
 
-    
     /**
      * Used by extensions to set holidays in a DateCalculator.
      * 
Modified: trunk/src/site/changes.xml
===================================================================
--- trunk/src/site/changes.xml	2007-11-15 10:32:07 UTC (rev 251)
+++ trunk/src/site/changes.xml	2007-11-15 10:33:21 UTC (rev 252)
@@ -9,6 +9,7 @@
   </properties>
   <body>
     <release version="1.1.0" date="in SVN" description="Maintenance">
+      <action dev="benoitx" type="fix">fix NPE issue if the calendar name is null.</action>
       <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>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
 | 
| 
      
      
      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.
 | 
| 
      
      
      From: <be...@us...> - 2007-05-03 17:10:45
      
     | 
| Revision: 250
          http://svn.sourceforge.net/objectlabkit/?rev=250&view=rev
Author:   benoitx
Date:     2007-05-03 10:10:45 -0700 (Thu, 03 May 2007)
Log Message:
-----------
Added 2 methods to check if a given calendar is registered (useful when it is built on-the-fly)
Also changed version to 1.1.0-SNAPSHOT until release.
Modified Paths:
--------------
    trunk/common-build/project.xml
    trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/AbstractKitCalculatorsFactory.java
    trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/KitCalculatorsFactory.java
    trunk/pom.xml
    trunk/src/site/changes.xml
    trunk/src/site/index.xml
Modified: trunk/common-build/project.xml
===================================================================
--- trunk/common-build/project.xml	2007-01-25 10:37:59 UTC (rev 249)
+++ trunk/common-build/project.xml	2007-05-03 17:10:45 UTC (rev 250)
@@ -27,7 +27,7 @@
    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
    <pomVersion>3</pomVersion>
    <groupId>net.objectlab.kit.datecalc</groupId>
-   <currentVersion>1.1.0</currentVersion>
+   <currentVersion>1.1.0-SNAPSHOT</currentVersion>
    <organization>
       <name>ObjectLab Financial Ltd</name>
       <url>http://www.objectlab.co.uk</url>
@@ -157,7 +157,7 @@
 
    <versions>
       <version>
-         <id>1.1.0</id>
+         <id>1.1.0-SNAPSHOT</id>
          <name>1.1.0</name>
          <tag>v1.1.0</tag>
       </version>
Modified: trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/AbstractKitCalculatorsFactory.java
===================================================================
--- trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/AbstractKitCalculatorsFactory.java	2007-01-25 10:37:59 UTC (rev 249)
+++ trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/AbstractKitCalculatorsFactory.java	2007-05-03 17:10:45 UTC (rev 250)
@@ -105,6 +105,21 @@
     }
 
     /**
+     * @return true if the holiday name is registered.
+     */
+    public boolean isHolidayCalendarRegistered(final String name) {
+        return this.holidays.containsKey(name);
+    }
+    
+    /**
+     * @return an immutable Holiday Calendar that is registered, null if not registered.
+     */
+    public HolidayCalendar<E> getHolidayCalendar(final String name) {
+        return holidays.get(name);
+    }
+
+    
+    /**
      * Used by extensions to set holidays in a DateCalculator.
      * 
      * @param name
Modified: trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/KitCalculatorsFactory.java
===================================================================
--- trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/KitCalculatorsFactory.java	2007-01-25 10:37:59 UTC (rev 249)
+++ trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/KitCalculatorsFactory.java	2007-05-03 17:10:45 UTC (rev 250)
@@ -89,6 +89,16 @@
      *            the holiday calendar (non-working days with boundaries).
      */
     void registerHolidays(final String name, HolidayCalendar<E> holidaysCalendar);
+    
+    /**
+     * @return true if the holiday name is registered.
+     */
+    boolean isHolidayCalendarRegistered(final String name);
+    
+    /**
+     * @return an immutable Holiday Calendar that is registered.
+     */
+    HolidayCalendar<E> getHolidayCalendar(final String name);
 
     // -----------------------------------------------------------------------
     //
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml	2007-01-25 10:37:59 UTC (rev 249)
+++ trunk/pom.xml	2007-05-03 17:10:45 UTC (rev 250)
@@ -7,7 +7,7 @@
    <artifactId>datecalc</artifactId>
    <packaging>pom</packaging>
    <name>ObjectLab Kit</name>
-   <version>1.1.0</version>
+   <version>1.2.0-SNAPSHOT</version>
    <url>http://objectlabkit.sourceforge.net/</url>
    <description>
       ObjectLab Kit provides a generic Business Calendar for calculating dates given set(s) of holidays. Why
@@ -119,9 +119,9 @@
    </profiles>
 	   
   <scm>
-      <connection>scm:svn:https://svn.sourceforge.net/svnroot/objectlabkit/tags/1.1.0</connection>
-      <developerConnection>scm:svn:https://svn.sourceforge.net/svnroot/objectlabkit/tags/1.1.0</developerConnection>
-      <url>http://svn.sourceforge.net/objectlabkit/tags/1.1.0</url>
+      <connection>scm:svn:https://objectlabkit.svn.sourceforge.net/svnroot/objectlabkit/tags/1.1.0</connection>
+      <developerConnection>scm:svn:https://objectlabkit.svn.sourceforge.net/svnroot/objectlabkit/tags/1.1.0</developerConnection>
+      <url>http://objectlabkit.svn.sourceforge.net/objectlabkit/tags/1.1.0</url>
   </scm>
   
   <distributionManagement>
Modified: trunk/src/site/changes.xml
===================================================================
--- trunk/src/site/changes.xml	2007-01-25 10:37:59 UTC (rev 249)
+++ trunk/src/site/changes.xml	2007-05-03 17:10:45 UTC (rev 250)
@@ -9,6 +9,7 @@
   </properties>
   <body>
     <release version="1.1.0" date="in SVN" description="Maintenance">
+      <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>
       <action dev="benoitx" type="add">Added method moveByTenor without a spot lag to allow tenor calculation based on the CURRENT date and not the spot lag.</action>
Modified: trunk/src/site/index.xml
===================================================================
--- trunk/src/site/index.xml	2007-01-25 10:37:59 UTC (rev 249)
+++ trunk/src/site/index.xml	2007-05-03 17:10:45 UTC (rev 250)
@@ -21,6 +21,7 @@
   <body>
     <!-- The body of the document contains a number of sections -->
     <section name="Quick News">
+	<p style="margin-top:10px; margin-bottom:0; padding-bottom:0; text-align:center; line-height:0"><a href="http://feeds.feedburner.com/~r/ObjectlabOpenSourceNews/~6/1"><img src="http://feeds.feedburner.com/ObjectlabOpenSourceNews.1.gif" alt="ObjectLab Open Source News" style="border:0"/></a></p><p style="margin-top:5px; padding-top:0; font-size:x-small; text-align:center"><a href="http://www.feedburner.com/fb/a/headlineanimator/install?id=829470&w=1" onclick="window.open(this.href, 'haHowto', 'width=520,height=600,toolbar=no,address=no,resizable=yes,scrollbars'); return false" target="_blank">Grab this Headline Animator</a></p>    
     <p>2007-01-xx: version 1.1.0 is out and contains a couple of changes, a new HolidayHandler and the ability to define a valid range for the holiday (and
     if the calculation is beyond that range, an exception is thrown).  This is done via HolidayCalendar which should replace the simple Set<E> for holidays.
     More info on the changes <a href="changes-report.html">here</a>.</p>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
 | 
| 
      
      
      From: Google A. <goo...@go...> - 2007-02-28 04:56:42
      
     | 
| Macromedia XML News Aggregator Alistair Davidson recently blogged about StatSvn - a reporting tool for Subversion. From their site: StatSVN retrieves information from a Subversion ... <http://weblogs.macromedia.com/mxna/index.cfm?query=bySimpleSearch&searchTerms=statsvn> This as-it-happens Google Alert is brought to you by Google... - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Remove this Google Alert: http://www.google.com/alerts/remove?s=EAAAAIq3Ab5rO6vaPuJbzfH1NiU&hl=en Create another Google Alert: http://www.google.com/alerts?hl=en Sign in to manage your alerts: http://www.google.com/alerts/manage?hl=en | 
| 
      
      
      From: Google A. <goo...@go...> - 2007-02-27 05:44:36
      
     | 
| Automated Subversion Reports w/StatSVN and Ant By Jim Priest(modius) Alistair Davidson recently blogged about StatSvn - a reporting tool for Subversion. From their site: “StatSVN retrieves information from a Subversion repository and generates various tables and charts describing the project ... <http://www.fullasagoog.com/go.cfm?itemid=FF050FA9-0C13-691F-75FA3E291DEDCE92> fullasagoog.com full roast blend <http://fullasagoog.com/> Using date ranges with StatSVN By John I started checking out StatSVN a few months ago, and have since been able to set it up for a couple of projects. Ive got to say that the developers have been very helpful in resolving a couple of problems quickly, and have even gone ... <http://jbrugge.com/blog/2007/02/27/using-date-ranges-with-statsvn/> Brugge Blog <http://jbrugge.com/blog> This as-it-happens Google Alert is brought to you by Google... - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Remove this Google Alert: http://www.google.com/alerts/remove?s=EAAAAIq3Ab5rO6vaPuJbzfH1NiU&hl=en Create another Google Alert: http://www.google.com/alerts?hl=en Sign in to manage your alerts: http://www.google.com/alerts/manage?hl=en | 
| 
      
      
      From: Google A. <goo...@go...> - 2007-02-26 05:37:49
      
     | 
| Mailing list archives 22 more Caused by: java.io.FileNotFoundException: C:\viewstore\npi_tactical_dev\NPI_Provider\qalab.xml does not exist. at net.objectlab.qalab.m2.util.Utils. ... <http://mail-archives.apache.org/mod_mbox/maven-users/200610.mbox/%3C8...@fr...%3E> gmane.comp.java.springframework.rcp.devel Newsgroups: gmane.comp.java.springframework.rcp.devel Date: 2007-01-28 11:56:40 GMT. Hi All, Well, being the founder of QALab, I'd beg to differ and say ... <http://comments.gmane.org/gmane.comp.java.springframework.rcp.devel/4435> This as-it-happens Google Alert is brought to you by Google... - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Remove this Google Alert: http://www.google.com/alerts/remove?s=EAAAAAz0YKI0rBHPBhe0kdarm0g&hl=en Create another Google Alert: http://www.google.com/alerts?hl=en Sign in to manage your alerts: http://www.google.com/alerts/manage?hl=en |