missing svn keywords and @version: $ tags

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@967237 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Matthew Jason Benson 2010-07-23 20:08:57 +00:00
parent 34a5505cf7
commit b1ba66c46e
17 changed files with 18 additions and 3 deletions

View File

@ -20,6 +20,7 @@
* Null-safe CharSequence utility methods.
*
* @author Gary Gregory
* @version $Id$
*/
public class CharSequenceUtils {

View File

@ -27,6 +27,7 @@
*
* <p>#ThreadSafe#</p>
* @author Apache Software Foundation
* @version $Id$
*/
public class EnumUtils {

View File

@ -26,6 +26,7 @@
* <p>#ThreadSafe# if the objects are threadsafe</p>
* @since Lang 3.0
* @author Matt Benson
* @version $Id$
*/
public final class Pair<L, R> implements Serializable {
/** Serialization version */

View File

@ -27,7 +27,7 @@
* <p>#ThreadSafe#</p>
* @author Apache Software Foundation
* @since 3.0
* @version $Id: Range.java 830032 2009-10-27 00:15:00Z scolebourne $
* @version $Id$
*/
public final class Range<T> implements Serializable {

View File

@ -76,6 +76,7 @@
*
* @author <a href="mailto:mwooten.dev@gmail.com">Michael Wooten</a>
* @since 3.0
* @version $Id$
*/
public interface Builder<T> {

View File

@ -84,8 +84,8 @@
* </pre>
* </p>
*
* @version $Id: $
* @since 3.0
* @version $Id$
*/
public class BasicThreadFactory implements ThreadFactory {
/** A counter for the threads created by this factory. */
@ -248,7 +248,7 @@ private void initializeThread(Thread t) {
* BasicThreadFactory} for a usage example.
* </p>
*
* @version $Id: $
* @version $Id$
*/
public static class Builder
implements org.apache.commons.lang3.builder.Builder<BasicThreadFactory> {

View File

@ -45,6 +45,7 @@
* @param <L> The event listener type
*
* @since 3.0
* @version $Id$
*/
public class EventListenerSupport<L>
{

View File

@ -31,6 +31,7 @@
* Provides some useful event-based utility methods.
*
* @since 3.0
* @version $Id$
*/
public class EventUtils
{

View File

@ -27,6 +27,7 @@
*
* @author Apache Software Foundation
* @since 3.0
* @version $Id$
*/
public class AggregateTranslator extends CharSequenceTranslator {

View File

@ -28,6 +28,7 @@
*
* @author Apache Software Foundation
* @since 3.0
* @version $Id$
*/
public abstract class CharSequenceTranslator {

View File

@ -25,6 +25,7 @@
*
* @author Apache Software Foundation
* @since 3.0
* @version $Id$
*/
public abstract class CodePointTranslator extends CharSequenceTranslator {

View File

@ -23,6 +23,7 @@
*
* @author Apache Software Foundation
* @since 3.0
* @version $Id$
*/
public class EntityArrays {

View File

@ -25,6 +25,7 @@
*
* @author Apache Software Foundation
* @since 3.0
* @version $Id$
*/
// TODO: Replace with a RegexLookup? Performance test.
public class LookupTranslator extends CharSequenceTranslator {

View File

@ -24,6 +24,7 @@
*
* @author Apache Software Foundation
* @since 3.0
* @version $Id$
*/
public class NumericEntityEscaper extends CodePointTranslator {

View File

@ -25,6 +25,7 @@
*
* @author Apache Software Foundation
* @since 3.0
* @version $Id$
*/
public class NumericEntityUnescaper extends CharSequenceTranslator {

View File

@ -24,6 +24,7 @@
*
* @author Apache Software Foundation
* @since 3.0
* @version $Id$
*/
public class UnicodeEscaper extends CodePointTranslator {

View File

@ -28,6 +28,7 @@
*
* @author Apache Software Foundation
* @since 3.0
* @version $Id$
*/
public class UnicodeUnescaper extends CharSequenceTranslator {