# HG changeset patch # User Felix Wolfsteller # Date 1312289868 0 # Node ID a443dd6566b855c9179ed34bfca514c2e97eaae3 # Parent e9337488bac36ff3c857e2f15fc2f24cd9eacbe8 Minor cosmetic changes (javadoc comments). flys-client/trunk@2449 c6561f87-3c4e-4783-a992-168aeb5c3f6f diff -r e9337488bac3 -r a443dd6566b8 flys-client/ChangeLog --- a/flys-client/ChangeLog Fri Jul 22 12:23:36 2011 +0000 +++ b/flys-client/ChangeLog Tue Aug 02 12:57:48 2011 +0000 @@ -1,3 +1,9 @@ +2011-08-02 Felix Wolfsteller + + * src/main/java/de/intevation/flys/client/client/ui/TableDataPanel.java: + Unified spacing and punctuations in javadoc comments, removed + incorrect comment. + 2011-07-22 Ingo Weinzierl * src/main/java/de/intevation/flys/client/shared/model/DefaultCollection.java, diff -r e9337488bac3 -r a443dd6566b8 flys-client/src/main/java/de/intevation/flys/client/client/ui/TableDataPanel.java --- a/flys-client/src/main/java/de/intevation/flys/client/client/ui/TableDataPanel.java Fri Jul 22 12:23:36 2011 +0000 +++ b/flys-client/src/main/java/de/intevation/flys/client/client/ui/TableDataPanel.java Tue Aug 02 12:57:48 2011 +0000 @@ -27,23 +27,22 @@ */ public class TableDataPanel { - /** The message class that provides i18n strings.*/ + /** The message class that provides i18n strings. */ protected FLYSConstants MESSAGES = GWT.create(FLYSConstants.class); - /** The DistanceInfoService used to retrieve locations about rivers.*/ protected CSVExportServiceAsync exportService = GWT.create(CSVExportService.class); - /** A container that will contain the location or the distance panel.*/ + /** A container that will contain the location or the distance panel. */ protected VLayout container; - /** The export type.*/ + /** The export type. */ protected String name; - /** The UUID of the collection */ + /** The UUID of the collection. */ protected String uuid; - /** The table*/ + /** The table. */ protected ListGrid dataTable; @@ -58,9 +57,7 @@ /** - * This method creates a widget that contains a table - * - * @param data The data that might be inserted.//Use this? + * This method creates a widget that contains a table. * * @return a panel. */