You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by br...@apache.org on 2014/01/15 20:38:16 UTC

svn commit: r1558546 - in /commons/proper/lang/trunk/src: changes/ main/java/org/apache/commons/lang3/ main/java/org/apache/commons/lang3/builder/ main/java/org/apache/commons/lang3/concurrent/ main/java/org/apache/commons/lang3/event/ main/java/org/ap...

Author: britter
Date: Wed Jan 15 19:38:15 2014
New Revision: 1558546

URL: http://svn.apache.org/r1558546
Log:
LANG-953: Convert package.html files to package-info.java files

Added:
    commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/builder/package-info.java   (with props)
    commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/concurrent/package-info.java   (with props)
    commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/event/package-info.java   (with props)
    commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/exception/package-info.java   (with props)
    commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/math/package-info.java   (with props)
    commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/mutable/package-info.java   (with props)
    commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/package-info.java   (with props)
    commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/reflect/package-info.java   (with props)
    commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/text/package-info.java   (with props)
    commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/text/translate/package-info.java   (with props)
    commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/time/package-info.java   (with props)
    commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/tuple/package-info.java   (with props)
Removed:
    commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/builder/package.html
    commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/concurrent/package.html
    commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/event/package.html
    commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/exception/package.html
    commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/math/package.html
    commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/mutable/package.html
    commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/overview.html
    commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/package.html
    commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/reflect/package.html
    commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/text/package.html
    commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/text/translate/package.html
    commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/time/package.html
    commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/tuple/package.html
Modified:
    commons/proper/lang/trunk/src/changes/changes.xml

Modified: commons/proper/lang/trunk/src/changes/changes.xml
URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/changes/changes.xml?rev=1558546&r1=1558545&r2=1558546&view=diff
==============================================================================
--- commons/proper/lang/trunk/src/changes/changes.xml [utf-8] (original)
+++ commons/proper/lang/trunk/src/changes/changes.xml [utf-8] Wed Jan 15 19:38:15 2014
@@ -22,6 +22,7 @@
   <body>
 
   <release version="3.3" date="TBA" description="Bugfix and Feature release">
+    <action issue="LANG-953" type="update" dev="britter">Convert package.html files to package-info.java files</action>
     <action issue="LANG-950" type="fix" dev="chas">FastDateParser does not handle two digit year parsing like SimpleDateFormat</action>
     <action issue="LANG-949" type="fix" dev="chas">FastDateParserTest.testParses does not test FastDateParser</action>
     <action issue="LANG-940" type="update" dev="britter">Fix deprecation warnings</action>

Added: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/builder/package-info.java
URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/builder/package-info.java?rev=1558546&view=auto
==============================================================================
--- commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/builder/package-info.java (added)
+++ commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/builder/package-info.java Wed Jan 15 19:38:15 2014
@@ -0,0 +1,30 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You 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.
+ */
+/**
+ * <p>Assists in creating consistent {@code equals(Object)}, {@code toString()},
+ * {@code hashCode()}, and {@code compareTo(Object)} methods.</p>
+ * <p>These classes are not thread-safe.</p>
+ *
+ * @see java.lang.Object#equals(Object)
+ * @see java.lang.Object#toString()
+ * @see java.lang.Object#hashCode()
+ * @see java.lang.Comparable#compareTo(Object)
+ *
+ * @since 1.0
+ * @version $Id$
+ */
+package org.apache.commons.lang3.builder;

Propchange: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/builder/package-info.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/builder/package-info.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/concurrent/package-info.java
URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/concurrent/package-info.java?rev=1558546&view=auto
==============================================================================
--- commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/concurrent/package-info.java (added)
+++ commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/concurrent/package-info.java Wed Jan 15 19:38:15 2014
@@ -0,0 +1,24 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You 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.
+ */
+/**
+ * <p>Provides support classes for multi-threaded programming. This package is
+ * intended to be an extension to {@code java.util.concurrent}.</p>
+ * <p>These classes are thread-safe.</p>
+ *
+ * @version $Id$
+ */
+package org.apache.commons.lang3.concurrent;

Propchange: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/concurrent/package-info.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/concurrent/package-info.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/event/package-info.java
URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/event/package-info.java?rev=1558546&view=auto
==============================================================================
--- commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/event/package-info.java (added)
+++ commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/event/package-info.java Wed Jan 15 19:38:15 2014
@@ -0,0 +1,23 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You 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.
+ */
+/**
+ * Provides some useful event-based utilities.
+ *
+ * @since 3.0
+ * @version $Id$
+ */
+package org.apache.commons.lang3.event;

Propchange: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/event/package-info.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/event/package-info.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/exception/package-info.java
URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/exception/package-info.java?rev=1558546&view=auto
==============================================================================
--- commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/exception/package-info.java (added)
+++ commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/exception/package-info.java Wed Jan 15 19:38:15 2014
@@ -0,0 +1,27 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You 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.
+ */
+/**
+ * <p>Provides functionality for Exceptions.</p>
+ * <p>Contains the concept of an exception with context i.e. such an exception will contain a map with keys and values.
+ * This provides an easy way to pass valuable state information at exception time in useful form to a calling process.</p>
+ * <p>Lastly, {@link org.apache.commons.lang3.exception.ExceptionUtils} also contains <code>Throwable</code> manipulation
+ * and examination routines.</p>
+ *
+ * @since 1.0
+ * @version $Id$
+ */
+package org.apache.commons.lang3.exception;

Propchange: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/exception/package-info.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/exception/package-info.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/math/package-info.java
URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/math/package-info.java?rev=1558546&view=auto
==============================================================================
--- commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/math/package-info.java (added)
+++ commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/math/package-info.java Wed Jan 15 19:38:15 2014
@@ -0,0 +1,26 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You 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.
+ */
+/**
+ * <p>Extends {@link java.math} for business mathematical classes. This package is intended for business
+ * mathematical use, not scientific use. See <a href="http://commons.apache.org/math/">Commons Math</a>
+ * for a more complete set of mathematical classes.</p>
+ * <p>These classes are immutable, and therefore thread-safe.</p>
+ *
+ * @since 2.0
+ * @version $Id$
+ */
+package org.apache.commons.lang3.math;

Propchange: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/math/package-info.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/math/package-info.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/mutable/package-info.java
URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/mutable/package-info.java?rev=1558546&view=auto
==============================================================================
--- commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/mutable/package-info.java (added)
+++ commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/mutable/package-info.java Wed Jan 15 19:38:15 2014
@@ -0,0 +1,24 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You 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.
+ */
+/**
+ * <p>Provides typed mutable wrappers to primitive values and Object.</p>
+ * <p>These classes are not thread-safe.</p>
+ *
+ * @since 2.1
+ * @version $Id$
+ */
+package org.apache.commons.lang3.mutable;

Propchange: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/mutable/package-info.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/mutable/package-info.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/package-info.java
URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/package-info.java?rev=1558546&view=auto
==============================================================================
--- commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/package-info.java (added)
+++ commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/package-info.java Wed Jan 15 19:38:15 2014
@@ -0,0 +1,26 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You 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.
+ */
+/**
+ * <p>Provides highly reusable static utility methods, chiefly concerned
+ * with adding value to the {@link java.lang} classes.</p>
+ * <p>Most of these classes are immutable and thus thread-safe.
+ * However Charset is not currently guaranteed thread-safe under all circumstances.</p>
+ *
+ * @since 1.0
+ * @version $Id$
+ */
+package org.apache.commons.lang3;

Propchange: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/package-info.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/package-info.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/reflect/package-info.java
URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/reflect/package-info.java?rev=1558546&view=auto
==============================================================================
--- commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/reflect/package-info.java (added)
+++ commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/reflect/package-info.java Wed Jan 15 19:38:15 2014
@@ -0,0 +1,24 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You 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.
+ */
+/**
+ * <p>Accumulates common high-level uses of the {@code java.lang.reflect} APIs.</p>
+ * <p>These classes are immutable, and therefore thread-safe.</p>
+ *
+ * @since 3.0
+ * @version $Id$
+ */
+package org.apache.commons.lang3.reflect;

Propchange: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/reflect/package-info.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/reflect/package-info.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/text/package-info.java
URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/text/package-info.java?rev=1558546&view=auto
==============================================================================
--- commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/text/package-info.java (added)
+++ commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/text/package-info.java Wed Jan 15 19:38:15 2014
@@ -0,0 +1,25 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You 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.
+ */
+/**
+ * <p> Provides classes for handling and manipulating text, partly as an extension to {@link java.text}.
+ * The classes in this package are, for the most part, intended to be instantiated (i.e. they are not utility classes
+ * with lots of static methods). </p>
+ *
+ * @since 2.1
+ * @version $Id$
+ */
+package org.apache.commons.lang3.text;

Propchange: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/text/package-info.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/text/package-info.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/text/translate/package-info.java
URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/text/translate/package-info.java?rev=1558546&view=auto
==============================================================================
--- commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/text/translate/package-info.java (added)
+++ commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/text/translate/package-info.java Wed Jan 15 19:38:15 2014
@@ -0,0 +1,25 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You 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.
+ */
+/**
+ * <p> An API for creating text translation routines from a set of smaller building blocks. Initially created to make it
+ * possible for the user to customize the rules in the StringEscapeUtils class.</p>
+ * <p>These classes are immutable, and therefore thread-safe.</p>
+ *
+ * @since 3.0
+ * @version $Id$
+ */
+package org.apache.commons.lang3.text.translate;

Propchange: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/text/translate/package-info.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/text/translate/package-info.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/time/package-info.java
URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/time/package-info.java?rev=1558546&view=auto
==============================================================================
--- commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/time/package-info.java (added)
+++ commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/time/package-info.java Wed Jan 15 19:38:15 2014
@@ -0,0 +1,24 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You 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.
+ */
+/**
+ * <p>Provides classes and methods to work with dates and durations.</p>
+ * <p>These classes are immutable (and therefore thread-safe) apart from {@link org.apache.commons.lang3.time.StopWatch}.</p>
+ *
+ * @since 2.0
+ * @version $Id$
+ */
+package org.apache.commons.lang3.time;

Propchange: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/time/package-info.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/time/package-info.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/tuple/package-info.java
URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/tuple/package-info.java?rev=1558546&view=auto
==============================================================================
--- commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/tuple/package-info.java (added)
+++ commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/tuple/package-info.java Wed Jan 15 19:38:15 2014
@@ -0,0 +1,23 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You 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.
+ */
+/**
+ * Tuple classes, starting with a Pair class in version 3.0.
+ *
+ * @since 3.0
+ * @version $Id$
+ */
+package org.apache.commons.lang3.tuple;

Propchange: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/tuple/package-info.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/tuple/package-info.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL