You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by sc...@apache.org on 2006/07/07 01:34:48 UTC

svn commit: r419740 - /jakarta/commons/proper/lang/trunk/src/java/org/apache/commons/lang/text/CompositeFormat.java

Author: scolebourne
Date: Thu Jul  6 16:34:47 2006
New Revision: 419740

URL: http://svn.apache.org/viewvc?rev=419740&view=rev
Log:
Add serialization version id and javadoc

Modified:
    jakarta/commons/proper/lang/trunk/src/java/org/apache/commons/lang/text/CompositeFormat.java

Modified: jakarta/commons/proper/lang/trunk/src/java/org/apache/commons/lang/text/CompositeFormat.java
URL: http://svn.apache.org/viewvc/jakarta/commons/proper/lang/trunk/src/java/org/apache/commons/lang/text/CompositeFormat.java?rev=419740&r1=419739&r2=419740&view=diff
==============================================================================
--- jakarta/commons/proper/lang/trunk/src/java/org/apache/commons/lang/text/CompositeFormat.java (original)
+++ jakarta/commons/proper/lang/trunk/src/java/org/apache/commons/lang/text/CompositeFormat.java Thu Jul  6 16:34:47 2006
@@ -15,10 +15,10 @@
  */
 package org.apache.commons.lang.text;
 
-import java.text.Format;
 import java.text.FieldPosition;
-import java.text.ParsePosition;
+import java.text.Format;
 import java.text.ParseException;
+import java.text.ParsePosition;
 
 /**
  * Formats using one formatter and parses using a different formatter.
@@ -26,10 +26,16 @@
  * and stored in a database another way.
  *
  * @author Archimedes Trajano
+ * @version $Id: $
  */
 public class CompositeFormat extends Format {
 
+    /** Serialization lock. */
+    private static final long serialVersionUID = -4329119827877627683L;
+
+    /** The parser to use. */
     private final Format parser;
+    /** The formatter to use. */
     private final Format formatter;
 
     /**



---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org