]> gitweb.fperrin.net Git - GpsPrune.git/blobdiff - tim/prune/data/FieldList.java
Version 12, December 2010
[GpsPrune.git] / tim / prune / data / FieldList.java
index e4baecc97524e6b5b61ac37da47b8fe95ec9ff0e..26ac966a28a94eff7f45ca953b07f08d36545106 100644 (file)
@@ -6,6 +6,7 @@ package tim.prune.data;
  */
 public class FieldList
 {
+       /** Array of Field objects making the list */
        private Field[] _fieldArray;
 
 
@@ -62,8 +63,7 @@ public class FieldList
 
 
        /**
-        * Check whether the FieldList contains the given
-        * Field object
+        * Check whether the FieldList contains the given Field object
         * @param inField Field to check
         * @return true if the FieldList contains the given field
         */
@@ -162,12 +162,12 @@ public class FieldList
        public String toString()
        {
                StringBuffer buffer = new StringBuffer();
-               buffer.append("(");
+               buffer.append('(');
                for (int i=0; i<_fieldArray.length; i++)
                {
                        buffer.append(_fieldArray[i].getName()).append(',');
                }
-               buffer.append(")");
+               buffer.append(')');
                return buffer.toString();
        }
 }