diff -r 22c1953e372c -r 3bc4c54f4bcc samples/growingparameters/src-api2.0/api/classes/Compute.java --- a/samples/growingparameters/src-api2.0/api/classes/Compute.java Sat Jun 14 09:53:37 2008 +0200 +++ b/samples/growingparameters/src-api2.0/api/classes/Compute.java Sat Jun 14 09:56:12 2008 +0200 @@ -10,14 +10,17 @@ * @return list of strings to work with * @since 1.0 */ public abstract List getData(); - /** Computes the strings to work with together with their associated descriptions. - * Shall be overriden in subclasses. By default delegates to {@link #getData} - * and uses the provided strings as both, the string and its description. + /** Computes the strings to work with together with their + * associated descriptions. Shall be overriden in subclasses. + * By default delegates to {@link #getData} + * and uses the provided strings as both, the string + * and its description. * * @return name to description pairs to work with * @since 2.0 */ public Map getDataAndDescription() { - LinkedHashMap ret = new LinkedHashMap(); + LinkedHashMap ret = + new LinkedHashMap(); for (String s : getData()) { ret.put(s, s); }