X-Git-Url: https://gitweb.fperrin.net/?a=blobdiff_plain;f=tim%2Fprune%2Fdata%2FFieldList.java;h=26ac966a28a94eff7f45ca953b07f08d36545106;hb=f35b6d628f68e3b5ef19965ad8988d0dd1eb8efa;hp=5e567ea8512bd80caae67370f0f58734979fabd1;hpb=d3679d647d57c2ee7376ddbf6def2d5b23c04307;p=GpsPrune.git diff --git a/tim/prune/data/FieldList.java b/tim/prune/data/FieldList.java index 5e567ea..26ac966 100644 --- a/tim/prune/data/FieldList.java +++ b/tim/prune/data/FieldList.java @@ -6,6 +6,7 @@ package tim.prune.data; */ public class FieldList { + /** Array of Field objects making the list */ private Field[] _fieldArray; @@ -29,7 +30,7 @@ public class FieldList /** * Constructor giving array of Field objects - * @param inFieldArray + * @param inFieldArray array of Field objects */ public FieldList(Field[] inFieldArray) { @@ -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(); } }