|
From: <ma...@us...> - 2006-08-26 07:00:27
|
Revision: 52 Author: marchy Date: 2006-08-26 00:00:17 -0700 (Sat, 26 Aug 2006) ViewCVS: http://svn.sourceforge.net/objectlabkit/?rev=52&view=rev Log Message: ----------- Added javadoc, and licence Modified Paths: -------------- trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/DateCalculator.java 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 2006-08-24 22:17:05 UTC (rev 51) +++ trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/DateCalculator.java 2006-08-26 07:00:17 UTC (rev 52) @@ -1,3 +1,18 @@ +/* + * 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. + */ package net.objectlab.kit.datecalc.common; import java.util.List; @@ -3,4 +18,14 @@ import java.util.Set; +/** + * A DateCalculator is a lightweight container with a reference(optional) to a + * set of holidays, a WorkingWeek (Mon-Fri by default), a startDate and a + * current date. The CurrentDate date is changed everytime that the addDays or + * moveByBusinessDays methods are called. + * + * @author Benoit Xhenseval + * @author $Author: $ + * @version $Revision: $, $Version: $ + */ public interface DateCalculator<E> { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |