Fix licences, dates and since tags
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137251 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
751c151c49
commit
2023467c05
|
@ -1,9 +1,7 @@
|
|||
package org.apache.commons.lang.time;
|
||||
|
||||
/* ====================================================================
|
||||
* The Apache Software License, Version 1.1
|
||||
*
|
||||
* Copyright (c) 2002 The Apache Software Foundation. All rights
|
||||
* Copyright (c) 2002-2003 The Apache Software Foundation. All rights
|
||||
* reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
|
@ -53,6 +51,7 @@ package org.apache.commons.lang.time;
|
|||
* information on the Apache Software Foundation, please see
|
||||
* <http://www.apache.org/>.
|
||||
*/
|
||||
package org.apache.commons.lang.time;
|
||||
|
||||
import java.text.*;
|
||||
import java.util.*;
|
||||
|
@ -61,6 +60,8 @@ import java.util.*;
|
|||
* A suite of utilities surrounding the use of the Calendar and Date object.
|
||||
*
|
||||
* @author <a href="mailto:sergek@lokitech.com">Serge Knystautas</a>
|
||||
* @since 2.1
|
||||
* @version $Id: CalendarUtils.java,v 1.2 2003/02/04 22:19:33 scolebourne Exp $
|
||||
*/
|
||||
public class CalendarUtils {
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
/* ====================================================================
|
||||
* The Apache Software License, Version 1.1
|
||||
*
|
||||
* Copyright (c) 2002 The Apache Software Foundation. All rights
|
||||
* Copyright (c) 2002-2003 The Apache Software Foundation. All rights
|
||||
* reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
|
@ -23,14 +23,14 @@
|
|||
* Alternately, this acknowlegement may appear in the software itself,
|
||||
* if and wherever such third-party acknowlegements normally appear.
|
||||
*
|
||||
* 4. The names "The Jakarta Project", "Ant", and "Apache Software
|
||||
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
|
||||
* Foundation" must not be used to endorse or promote products derived
|
||||
* from this software without prior written permission. For written
|
||||
* permission, please contact apache@apache.org.
|
||||
*
|
||||
* 5. Products derived from this software may not be called "Apache"
|
||||
* nor may "Apache" appear in their names without prior written
|
||||
* permission of the Apache Group.
|
||||
* permission of the Apache Software Foundation.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
|
||||
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
||||
|
@ -68,10 +68,8 @@ import java.util.TimeZone;
|
|||
*
|
||||
* @author <a href="mailto:sbailliez@apache.org">Stephane Bailliez</a>
|
||||
* @author <a href="mailto:stefan.bodewig@epost.de">Stefan Bodewig</a>
|
||||
*
|
||||
* @since Lang 2.0
|
||||
*
|
||||
* @version $Revision: 1.1 $
|
||||
* @since 2.1
|
||||
* @version $Id: DateUtils.java,v 1.2 2003/02/04 22:19:33 scolebourne Exp $
|
||||
*/
|
||||
public final class DateUtils {
|
||||
|
||||
|
@ -124,8 +122,12 @@ public final class DateUtils {
|
|||
MINUTE_SECONDS.setFormat(1, SECONDS_FORMAT);
|
||||
}
|
||||
|
||||
/** public constructor */
|
||||
/// TODO: Insert note that this should not be used
|
||||
/**
|
||||
* <p>DateUtils instances should NOT be constructed in standard programming.</p>
|
||||
*
|
||||
* <p>This constructor is public to permit tools that require a JavaBean instance
|
||||
* to operate.</p>
|
||||
*/
|
||||
public DateUtils() {
|
||||
}
|
||||
|
||||
|
|
|
@ -51,7 +51,6 @@
|
|||
* information on the Apache Software Foundation, please see
|
||||
* <http://www.apache.org/>.
|
||||
*/
|
||||
|
||||
package org.apache.commons.lang.time;
|
||||
|
||||
import java.util.Date;
|
||||
|
@ -67,7 +66,7 @@ import java.text.DateFormatSymbols;
|
|||
import java.text.DateFormat;
|
||||
import java.text.SimpleDateFormat;
|
||||
|
||||
/******************************************************************************
|
||||
/**
|
||||
* Similar to {@link java.text.SimpleDateFormat}, but faster and thread-safe.
|
||||
* Only formatting is supported, but all patterns are compatible with
|
||||
* SimpleDateFormat. [Code originally taken from the open source TreeTrove
|
||||
|
@ -76,8 +75,8 @@ import java.text.SimpleDateFormat;
|
|||
* @author Brian S O'Neill
|
||||
* @author Sean Schofield
|
||||
* @author Gary Gregory
|
||||
* @since 2.0
|
||||
* @version $Id: FastDateFormat.java,v 1.3 2003/02/04 22:12:08 scolebourne Exp $
|
||||
* @since 2.1
|
||||
* @version $Id: FastDateFormat.java,v 1.4 2003/02/04 22:19:33 scolebourne Exp $
|
||||
*/
|
||||
public class FastDateFormat {
|
||||
/** Style pattern */
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/* ====================================================================
|
||||
* The Apache Software License, Version 1.1
|
||||
*
|
||||
* Copyright (c) 1999-2002 The Apache Software Foundation. All rights
|
||||
* Copyright (c) 1999-2003 The Apache Software Foundation. All rights
|
||||
* reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
|
@ -76,8 +76,8 @@ package org.apache.commons.lang.time;
|
|||
*
|
||||
* @author Henri Yandell
|
||||
* @author Stephen Colebourne
|
||||
* @since 2.0
|
||||
* @version $Id: StopWatch.java,v 1.1 2002/12/22 22:59:58 scolebourne Exp $
|
||||
* @since 2.1
|
||||
* @version $Id: StopWatch.java,v 1.2 2003/02/04 22:19:33 scolebourne Exp $
|
||||
*/
|
||||
public class StopWatch {
|
||||
|
||||
|
|
Loading…
Reference in New Issue