diff options
Diffstat (limited to 'compatibility-client/src')
46 files changed, 244 insertions, 242 deletions
diff --git a/compatibility-client/src/main/java/com/vaadin/v7/client/connectors/UnsafeHtmlRendererConnector.java b/compatibility-client/src/main/java/com/vaadin/v7/client/connectors/UnsafeHtmlRendererConnector.java index e9828fc01e..0fc80deaec 100644 --- a/compatibility-client/src/main/java/com/vaadin/v7/client/connectors/UnsafeHtmlRendererConnector.java +++ b/compatibility-client/src/main/java/com/vaadin/v7/client/connectors/UnsafeHtmlRendererConnector.java @@ -20,7 +20,7 @@ import com.vaadin.v7.client.renderers.Renderer; import com.vaadin.v7.client.widget.grid.RendererCellReference; /** - * A connector for {@link UnsafeHtmlRenderer} + * A connector for {@link UnsafeHtmlRenderer}. * * @since 7.4 * @author Vaadin Ltd diff --git a/compatibility-client/src/main/java/com/vaadin/v7/client/renderers/DateRenderer.java b/compatibility-client/src/main/java/com/vaadin/v7/client/renderers/DateRenderer.java index 85d489d389..39d2fdb045 100644 --- a/compatibility-client/src/main/java/com/vaadin/v7/client/renderers/DateRenderer.java +++ b/compatibility-client/src/main/java/com/vaadin/v7/client/renderers/DateRenderer.java @@ -23,7 +23,7 @@ import com.google.gwt.i18n.shared.DateTimeFormat.PredefinedFormat; import com.vaadin.v7.client.widget.grid.RendererCellReference; /** - * A renderer for rendering dates into cells + * A renderer for rendering dates into cells. * * @since 7.4 * @author Vaadin Ltd diff --git a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/VCalendar.java b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/VCalendar.java index e657eeeed7..9d6ec62d7b 100644 --- a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/VCalendar.java +++ b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/VCalendar.java @@ -45,7 +45,7 @@ import com.vaadin.v7.shared.ui.calendar.CalendarState.EventSortOrder; import com.vaadin.v7.shared.ui.calendar.DateConstants; /** - * Client side implementation for Calendar + * Client side implementation for Calendar. * * @since 7.1 * @author Vaadin Ltd. @@ -107,11 +107,11 @@ public class VCalendar extends Composite implements VHasDropHandler { private CalendarDropHandler dropHandler; /** - * Listener interface for listening to event click events + * Listener interface for listening to event click events. */ public interface DateClickListener { /** - * Triggered when a date was clicked + * Triggered when a date was clicked. * * @param date * The date and time that was clicked @@ -120,7 +120,7 @@ public class VCalendar extends Composite implements VHasDropHandler { } /** - * Listener interface for listening to week number click events + * Listener interface for listening to week number click events. */ public interface WeekClickListener { /** @@ -133,29 +133,29 @@ public class VCalendar extends Composite implements VHasDropHandler { } /** - * Listener interface for listening to forward events + * Listener interface for listening to forward events. */ public interface ForwardListener { /** - * Called when the calendar should move one view forward + * Called when the calendar should move one view forward. */ void forward(); } /** - * Listener interface for listening to backward events + * Listener interface for listening to backward events. */ public interface BackwardListener { /** - * Called when the calendar should move one view backward + * Called when the calendar should move one view backward. */ void backward(); } /** - * Listener interface for listening to selection events + * Listener interface for listening to selection events. */ public interface RangeSelectListener { @@ -175,11 +175,11 @@ public class VCalendar extends Composite implements VHasDropHandler { } /** - * Listener interface for listening to click events + * Listener interface for listening to click events. */ public interface EventClickListener { /** - * Called when an event was clicked + * Called when an event was clicked. * * @param event * The event that was clicked @@ -194,7 +194,7 @@ public class VCalendar extends Composite implements VHasDropHandler { public interface EventMovedListener { /** * Triggered when an event was dragged to a new position and the start - * and end dates was changed + * and end dates was changed. * * @param event * The event that was moved @@ -204,7 +204,7 @@ public class VCalendar extends Composite implements VHasDropHandler { /** * Listener interface for when an event gets resized (its start or end date - * changes) + * changes). */ public interface EventResizeListener { /** @@ -222,7 +222,7 @@ public class VCalendar extends Composite implements VHasDropHandler { */ public interface ScrollListener { /** - * Triggered when the calendar is scrolled + * Triggered when the calendar is scrolled. * * @param scrollPosition * The scroll position in pixels as returned by @@ -236,7 +236,7 @@ public class VCalendar extends Composite implements VHasDropHandler { */ public interface MouseEventListener { /** - * Triggered when a user wants an context menu + * Triggered when a user wants an context menu. * * @param event * The context menu event @@ -348,7 +348,7 @@ public class VCalendar extends Composite implements VHasDropHandler { } /** - * Default constructor + * Default constructor. */ public VCalendar() { weekToolbar = new SimpleWeekToolbar(this); @@ -368,7 +368,7 @@ public class VCalendar extends Composite implements VHasDropHandler { e.onselectstart = function() { return false; } - + e.ondragstart = function() { return false; } @@ -397,7 +397,7 @@ public class VCalendar extends Composite implements VHasDropHandler { } /** - * Adds events to the month grid + * Adds events to the month grid. * * @param events * The events to add @@ -531,7 +531,7 @@ public class VCalendar extends Composite implements VHasDropHandler { } /** - * Remove a month event from the view + * Remove a month event from the view. * * @param target * The event to remove @@ -557,7 +557,7 @@ public class VCalendar extends Composite implements VHasDropHandler { } /** - * Updates an event in the month grid + * Updates an event in the month grid. * * @param changedEvent * The event that has changed @@ -569,7 +569,7 @@ public class VCalendar extends Composite implements VHasDropHandler { } /** - * Sort the events by current sort order + * Sort the events by current sort order. * * @param events * The events to sort @@ -598,7 +598,7 @@ public class VCalendar extends Composite implements VHasDropHandler { } /** - * Sort the event by how long they are + * Sort the event by how long they are. * * @param events * The events to sort @@ -629,7 +629,7 @@ public class VCalendar extends Composite implements VHasDropHandler { } /** - * Re-render the week grid + * Re-render the week grid. * * @param daysCount * The amount of days to include in the week @@ -681,7 +681,7 @@ public class VCalendar extends Composite implements VHasDropHandler { } /** - * Updates the events in the Month view + * Updates the events in the Month view. * * @param daysCount * How many days there are @@ -777,7 +777,7 @@ public class VCalendar extends Composite implements VHasDropHandler { } /** - * Recalculates the heights of the sub-components in the calendar + * Recalculates the heights of the sub-components in the calendar. */ protected void recalculateHeights() { if (monthGrid != null) { @@ -801,7 +801,7 @@ public class VCalendar extends Composite implements VHasDropHandler { } /** - * Recalculates the widths of the sub-components in the calendar + * Recalculates the widths of the sub-components in the calendar. */ protected void recalculateWidths() { if (!isWidthUndefined) { @@ -835,7 +835,7 @@ public class VCalendar extends Composite implements VHasDropHandler { } /** - * Get the date format used to format dates only (excludes time) + * Get the date format used to format dates only (excludes time). * * @return */ @@ -844,7 +844,7 @@ public class VCalendar extends Composite implements VHasDropHandler { } /** - * Get the time format used to format time only (excludes date) + * Get the time format used to format time only (excludes date). * * @return */ @@ -857,7 +857,7 @@ public class VCalendar extends Composite implements VHasDropHandler { /** * Get the date and time format to format the dates (includes both date and - * time) + * time). * * @return */ @@ -866,7 +866,7 @@ public class VCalendar extends Composite implements VHasDropHandler { } /** - * Is the calendar either disabled or readonly + * Is the calendar either disabled or readonly. * * @return */ @@ -875,14 +875,14 @@ public class VCalendar extends Composite implements VHasDropHandler { } /** - * Is the component disabled + * Is the component disabled. */ public boolean isDisabled() { return disabled; } /** - * Is the component disabled + * Is the component disabled. * * @param disabled * True if disabled @@ -892,14 +892,14 @@ public class VCalendar extends Composite implements VHasDropHandler { } /** - * Is the component read-only + * Is the component read-only. */ public boolean isReadOnly() { return readOnly; } /** - * Is the component read-only + * Is the component read-only. * * @param readOnly * True if component is readonly @@ -909,7 +909,7 @@ public class VCalendar extends Composite implements VHasDropHandler { } /** - * Get the month grid component + * Get the month grid component. * * @return */ @@ -918,7 +918,7 @@ public class VCalendar extends Composite implements VHasDropHandler { } /** - * Get he week grid component + * Get he week grid component. * * @return */ @@ -981,7 +981,7 @@ public class VCalendar extends Composite implements VHasDropHandler { } /** - * Is the date at midnight + * Is the date at midnight. * * @param date * The date to check @@ -995,7 +995,7 @@ public class VCalendar extends Composite implements VHasDropHandler { } /** - * Are the dates equal (uses second resolution) + * Are the dates equal (uses second resolution). * * @param date1 * The first the to compare @@ -1013,7 +1013,7 @@ public class VCalendar extends Composite implements VHasDropHandler { } /** - * Is the calendar event zero seconds long and is occurring at midnight + * Is the calendar event zero seconds long and is occurring at midnight. * * @param event * The event to check @@ -1025,7 +1025,7 @@ public class VCalendar extends Composite implements VHasDropHandler { } /** - * Should the 24h time format be used + * Should the 24h time format be used. * * @param format * True if the 24h format should be used else the 12h format is @@ -1036,14 +1036,14 @@ public class VCalendar extends Composite implements VHasDropHandler { } /** - * Is the 24h time format used + * Is the 24h time format used. */ public boolean is24HFormat() { return format; } /** - * Set the names of the week days + * Set the names of the week days. * * @param names * The names of the days (Monday, Thursday,...) @@ -1054,14 +1054,14 @@ public class VCalendar extends Composite implements VHasDropHandler { } /** - * Get the names of the week days + * Get the names of the week days. */ public String[] getDayNames() { return dayNames; } /** - * Set the names of the months + * Set the names of the months. * * @param names * The names of the months (January, February,...) @@ -1072,14 +1072,14 @@ public class VCalendar extends Composite implements VHasDropHandler { } /** - * Get the month names + * Get the month names. */ public String[] getMonthNames() { return monthNames; } /** - * Set the number when a week starts + * Set the number when a week starts. * * @param dayNumber * The number of the day @@ -1090,14 +1090,14 @@ public class VCalendar extends Composite implements VHasDropHandler { } /** - * Get the number when a week starts + * Get the number when a week starts. */ public int getFirstDayNumber() { return firstDay; } /** - * Set the number when a week ends + * Set the number when a week ends. * * @param dayNumber * The number of the day @@ -1155,7 +1155,7 @@ public class VCalendar extends Composite implements VHasDropHandler { } /** - * Re-renders the whole week view + * Re-renders the whole week view. * * @param scroll * The amount of pixels to scroll the week view @@ -1205,7 +1205,7 @@ public class VCalendar extends Composite implements VHasDropHandler { } /** - * Re-renders the whole month view + * Re-renders the whole month view. * * @param firstDayOfWeek * The first day of the week @@ -1266,7 +1266,7 @@ public class VCalendar extends Composite implements VHasDropHandler { private DateClickListener dateClickListener; /** - * Sets the listener for listening to event clicks + * Sets the listener for listening to event clicks. * * @param listener * The listener to use @@ -1276,7 +1276,7 @@ public class VCalendar extends Composite implements VHasDropHandler { } /** - * Gets the listener for listening to event clicks + * Gets the listener for listening to event clicks. * * @return */ @@ -1287,7 +1287,7 @@ public class VCalendar extends Composite implements VHasDropHandler { private ForwardListener forwardListener; /** - * Set the listener which listens to forward events from the calendar + * Set the listener which listens to forward events from the calendar. * * @param listener * The listener to use @@ -1297,7 +1297,7 @@ public class VCalendar extends Composite implements VHasDropHandler { } /** - * Get the listener which listens to forward events from the calendar + * Get the listener which listens to forward events from the calendar. * * @return */ @@ -1308,7 +1308,7 @@ public class VCalendar extends Composite implements VHasDropHandler { private BackwardListener backwardListener; /** - * Set the listener which listens to backward events from the calendar + * Set the listener which listens to backward events from the calendar. * * @param listener * The listener to use @@ -1318,7 +1318,7 @@ public class VCalendar extends Composite implements VHasDropHandler { } /** - * Set the listener which listens to backward events from the calendar + * Set the listener which listens to backward events from the calendar. * * @return */ @@ -1329,7 +1329,7 @@ public class VCalendar extends Composite implements VHasDropHandler { private WeekClickListener weekClickListener; /** - * Set the listener that listens to user clicking on the week numbers + * Set the listener that listens to user clicking on the week numbers. * * @param listener * The listener to use @@ -1339,7 +1339,7 @@ public class VCalendar extends Composite implements VHasDropHandler { } /** - * Get the listener that listens to user clicking on the week numbers + * Get the listener that listens to user clicking on the week numbers. * * @return */ @@ -1351,7 +1351,7 @@ public class VCalendar extends Composite implements VHasDropHandler { /** * Set the listener that listens to the user highlighting a region in the - * calendar + * calendar. * * @param listener * The listener to use @@ -1362,7 +1362,7 @@ public class VCalendar extends Composite implements VHasDropHandler { /** * Get the listener that listens to the user highlighting a region in the - * calendar + * calendar. * * @return */ @@ -1373,14 +1373,14 @@ public class VCalendar extends Composite implements VHasDropHandler { private EventClickListener eventClickListener; /** - * Get the listener that listens to the user clicking on the events + * Get the listener that listens to the user clicking on the events. */ public EventClickListener getEventClickListener() { return eventClickListener; } /** - * Set the listener that listens to the user clicking on the events + * Set the listener that listens to the user clicking on the events. * * @param listener * The listener to use @@ -1392,7 +1392,7 @@ public class VCalendar extends Composite implements VHasDropHandler { private EventMovedListener eventMovedListener; /** - * Get the listener that listens to when event is dragged to a new location + * Get the listener that listens to when event is dragged to a new location. * * @return */ @@ -1401,7 +1401,7 @@ public class VCalendar extends Composite implements VHasDropHandler { } /** - * Set the listener that listens to when event is dragged to a new location + * Set the listener that listens to when event is dragged to a new location. * * @param eventMovedListener * The listener to use @@ -1413,7 +1413,7 @@ public class VCalendar extends Composite implements VHasDropHandler { private ScrollListener scrollListener; /** - * Get the listener that listens to when the calendar widget is scrolled + * Get the listener that listens to when the calendar widget is scrolled. * * @return */ @@ -1422,7 +1422,7 @@ public class VCalendar extends Composite implements VHasDropHandler { } /** - * Set the listener that listens to when the calendar widget is scrolled + * Set the listener that listens to when the calendar widget is scrolled. * * @param scrollListener * The listener to use @@ -1435,7 +1435,7 @@ public class VCalendar extends Composite implements VHasDropHandler { /** * Get the listener that listens to when an events time limits are being - * adjusted + * adjusted. * * @return */ @@ -1445,7 +1445,7 @@ public class VCalendar extends Composite implements VHasDropHandler { /** * Set the listener that listens to when an events time limits are being - * adjusted + * adjusted. * * @param eventResizeListener * The listener to use @@ -1460,7 +1460,7 @@ public class VCalendar extends Composite implements VHasDropHandler { private boolean eventCaptionAsHtml = false; /** - * Get the listener that listen to mouse events + * Get the listener that listen to mouse events. * * @return */ @@ -1469,7 +1469,7 @@ public class VCalendar extends Composite implements VHasDropHandler { } /** - * Set the listener that listen to mouse events + * Set the listener that listen to mouse events. * * @param mouseEventListener * The listener to use @@ -1486,7 +1486,7 @@ public class VCalendar extends Composite implements VHasDropHandler { } /** - * Set selecting a range allowed + * Set selecting a range allowed. * * @param rangeSelectAllowed * Should selecting a range be allowed @@ -1496,7 +1496,7 @@ public class VCalendar extends Composite implements VHasDropHandler { } /** - * Is moving a range allowed + * Is moving a range allowed. * * @return */ @@ -1505,7 +1505,7 @@ public class VCalendar extends Composite implements VHasDropHandler { } /** - * Is moving a range allowed + * Is moving a range allowed. * * @param rangeMoveAllowed * Is it allowed @@ -1515,14 +1515,14 @@ public class VCalendar extends Composite implements VHasDropHandler { } /** - * Is resizing an event allowed + * Is resizing an event allowed. */ public boolean isEventResizeAllowed() { return eventResizeAllowed; } /** - * Is resizing an event allowed + * Is resizing an event allowed. * * @param eventResizeAllowed * True if allowed false if not @@ -1532,14 +1532,14 @@ public class VCalendar extends Composite implements VHasDropHandler { } /** - * Is moving an event allowed + * Is moving an event allowed. */ public boolean isEventMoveAllowed() { return eventMoveAllowed; } /** - * Is moving an event allowed + * Is moving an event allowed. * * @param eventMoveAllowed * True if moving is allowed, false if not @@ -1575,7 +1575,7 @@ public class VCalendar extends Composite implements VHasDropHandler { } /** - * Set the drop handler + * Set the drop handler. * * @param dropHandler * The drophandler to use diff --git a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/VCalendarPanel.java b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/VCalendarPanel.java index bb4acd257b..bd1740d0fa 100644 --- a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/VCalendarPanel.java +++ b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/VCalendarPanel.java @@ -80,7 +80,7 @@ public class VCalendarPanel extends FocusableFlexTable implements } /** - * Blur listener that listens to blur event from the panel + * Blur listener that listens to blur event from the panel. */ public interface FocusOutListener { /** @@ -98,7 +98,7 @@ public class VCalendarPanel extends FocusableFlexTable implements } /** - * Dispatches an event when the panel when time is changed + * Dispatches an event when the panel when time is changed. */ public interface TimeChangeListener { @@ -1214,7 +1214,7 @@ public class VCalendarPanel extends FocusableFlexTable implements } /** - * Handle the keyboard navigation when the resolution is set to MONTH + * Handle the keyboard navigation when the resolution is set to MONTH. * * @param keycode * The keycode to handle @@ -1270,7 +1270,7 @@ public class VCalendarPanel extends FocusableFlexTable implements } /** - * Handle keyboard navigation what the resolution is set to DAY + * Handle keyboard navigation what the resolution is set to DAY. * * @param keycode * The keycode to handle @@ -1376,7 +1376,7 @@ public class VCalendarPanel extends FocusableFlexTable implements } /** - * Handles the keyboard navigation + * Handles the keyboard navigation. * * @param keycode * The key code that was pressed @@ -1647,7 +1647,7 @@ public class VCalendarPanel extends FocusableFlexTable implements private ListBox ampm; /** - * Constructor + * Constructor. */ public VTime() { super(); @@ -1799,7 +1799,7 @@ public class VCalendarPanel extends FocusableFlexTable implements } /** - * Updates the valus to correspond to the values in value + * Updates the value to correspond to the values in value. */ public void updateTimes() { if (value == null) { @@ -1985,7 +1985,8 @@ public class VCalendarPanel extends FocusableFlexTable implements } /** - * Returns the submit listener that listens to selection made from the panel + * Returns the submit listener that listens to selection made from the + * panel. * * @return The listener or NULL if no listener has been set */ diff --git a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/VDateFieldCalendar.java b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/VDateFieldCalendar.java index 12141f7445..7305ac412c 100644 --- a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/VDateFieldCalendar.java +++ b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/VDateFieldCalendar.java @@ -25,7 +25,7 @@ import com.vaadin.v7.client.ui.VCalendarPanel.SubmitListener; import com.vaadin.v7.shared.ui.datefield.Resolution; /** - * A client side implementation for InlineDateField + * A client side implementation for InlineDateField. */ public class VDateFieldCalendar extends VDateField { @@ -105,8 +105,8 @@ public class VDateFieldCalendar extends VDateField { if (getCurrentResolution() .getCalendarField() > Resolution.SECOND .getCalendarField()) { - getClient().updateVariable(getId(), - "msec", DateTimeService + getClient().updateVariable( + getId(), "msec", DateTimeService .getMilliseconds(date2), false); } diff --git a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/VFilterSelect.java b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/VFilterSelect.java index 0abee9b3b3..cd1754edf8 100644 --- a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/VFilterSelect.java +++ b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/VFilterSelect.java @@ -103,7 +103,7 @@ public class VFilterSelect extends Composite HandlesAriaInvalid, HandlesAriaRequired, DeferredWorker { /** - * Represents a suggestion in the suggestion popup box + * Represents a suggestion in the suggestion popup box. */ public class FilterSelectSuggestion implements Suggestion, Command { @@ -113,7 +113,7 @@ public class VFilterSelect extends Composite private String style; /** - * Constructor + * Constructor. * * @param uidl * The UIDL received from the server @@ -256,12 +256,12 @@ public class VFilterSelect extends Composite return $entry(function(e) { var deltaX = e.deltaX ? e.deltaX : -0.5*e.wheelDeltaX; var deltaY = e.deltaY ? e.deltaY : -0.5*e.wheelDeltaY; - + // IE8 has only delta y if (isNaN(deltaY)) { deltaY = -0.5*e.wheelDelta; } - + @com.vaadin.v7.client.ui.VFilterSelect.JsniUtil::moveScrollFromEvent(*)(widget, deltaX, deltaY, e, e.deltaMode); }); }-*/; @@ -406,7 +406,7 @@ public class VFilterSelect extends Composite } /** - * Shows the popup where the user can see the filtered options + * Shows the popup where the user can see the filtered options. * * @param currentSuggestions * The filtered suggestions @@ -538,7 +538,7 @@ public class VFilterSelect extends Composite } /** - * Selects the next item in the filtered selections + * Selects the next item in the filtered selections. */ public void selectNextItem() { debug("VFS.SP: selectNextItem()"); @@ -553,7 +553,7 @@ public class VFilterSelect extends Composite } /** - * Selects the previous item in the filtered selections + * Selects the previous item in the filtered selections. */ public void selectPrevItem() { debug("VFS.SP: selectPrevItem()"); @@ -1023,7 +1023,7 @@ public class VFilterSelect extends Composite } /** - * The menu where the suggestions are rendered + * The menu where the suggestions are rendered. */ public class SuggestionMenu extends MenuBar implements SubPartAware, LoadHandler { @@ -1079,7 +1079,7 @@ public class VFilterSelect extends Composite } /** - * Sets the suggestions rendered in the menu + * Sets the suggestions rendered in the menu. * * @param suggestions * The suggestions to be rendered in the menu @@ -1162,7 +1162,7 @@ public class VFilterSelect extends Composite } /** - * Triggered after a selection has been made + * Triggered after a selection has been made. */ public void doPostFilterSelectedItemAction() { debug("VFS.SM: doPostFilterSelectedItemAction()"); @@ -1361,7 +1361,7 @@ public class VFilterSelect extends Composite } /** - * Overridden to avoid selecting text when text input is disabled + * Overridden to avoid selecting text when text input is disabled. */ @Override public void setSelectionRange(int pos, int length) { @@ -1705,7 +1705,7 @@ public class VFilterSelect extends Composite } /** - * Filters the options at certain page using the given filter + * Filters the options at certain page using the given filter. * * @param page * The page to filter @@ -1840,7 +1840,7 @@ public class VFilterSelect extends Composite } /** - * Triggered when a suggestion is selected + * Triggered when a suggestion is selected. * * @param suggestion * The suggestion that just got selected. @@ -2182,7 +2182,7 @@ public class VFilterSelect extends Composite } /** - * Triggered when a key was depressed + * Triggered when a key was depressed. * * @param event * The KeyUpEvent of the key depressed @@ -2246,7 +2246,7 @@ public class VFilterSelect extends Composite } /** - * Listener for popupopener + * Listener for popupopener. */ @Override diff --git a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/VPopupCalendar.java b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/VPopupCalendar.java index e93ce4c04c..50a24f1387 100644 --- a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/VPopupCalendar.java +++ b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/VPopupCalendar.java @@ -313,7 +313,7 @@ public class VPopupCalendar extends VTextualDate /** * Set correct tab index for disabled text field in IE as the value set in * setTextFieldEnabled(...) gets overridden in - * TextualDateConnection.updateFromUIDL(...) + * TextualDateConnection.updateFromUIDL(...). * * @since 7.3.1 */ @@ -390,7 +390,7 @@ public class VPopupCalendar extends VTextualDate } /** - * Opens the calendar panel popup + * Opens the calendar panel popup. */ public void openCalendarPanel() { @@ -468,7 +468,7 @@ public class VPopupCalendar extends VTextualDate /** * Sets the content of a special field for assistive devices, so that they * can recognize the change and inform the user (reading out in case of - * screen reader) + * screen reader). * * @param selectedDate * Date that is currently selected @@ -531,7 +531,7 @@ public class VPopupCalendar extends VTextualDate } /** - * Closes the open popup panel + * Closes the open popup panel. */ public void closeCalendarPanel() { if (open) { diff --git a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/VRichTextArea.java b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/VRichTextArea.java index d46e73aeb9..445a9b75b6 100644 --- a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/VRichTextArea.java +++ b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/VRichTextArea.java @@ -286,7 +286,7 @@ public class VRichTextArea extends Composite } /** - * Set the value of the text area + * Set the value of the text area. * * @param value * The text value. Can be html. @@ -300,7 +300,7 @@ public class VRichTextArea extends Composite } /** - * Get the value the text area + * Get the value the text area. */ public String getValue() { if (rta.isAttached()) { diff --git a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/VScrollTable.java b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/VScrollTable.java index 9894264126..fc91260783 100644 --- a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/VScrollTable.java +++ b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/VScrollTable.java @@ -2025,7 +2025,7 @@ public class VScrollTable extends FlowPanel } /** - * Get a rendered row by its key + * Get a rendered row by its key. * * @param key * The key to search with @@ -4071,7 +4071,7 @@ public class VScrollTable extends FlowPanel } /** - * Returns column alignments for visible columns + * Returns column alignments for visible columns. */ public char[] getColumnAlignments() { final char[] aligns = new char[visibleCells.size()]; @@ -4101,7 +4101,7 @@ public class VScrollTable extends FlowPanel } /** - * A cell in the footer + * A cell in the footer. */ public class FooterCell extends Widget { private final Element td = DOM.createTD(); @@ -4139,7 +4139,7 @@ public class VScrollTable extends FlowPanel } /** - * Sets the text of the footer + * Sets the text of the footer. * * @param footerText * The text in the footer @@ -4153,7 +4153,7 @@ public class VScrollTable extends FlowPanel } /** - * Set alignment of the text in the cell + * Set alignment of the text in the cell. * * @param c * The alignment which can be ALIGN_CENTER, ALIGN_LEFT, @@ -4177,7 +4177,7 @@ public class VScrollTable extends FlowPanel } /** - * Get the alignment of the text int the cell + * Get the alignment of the text int the cell. * * @return Returns either ALIGN_CENTER, ALIGN_LEFT or ALIGN_RIGHT */ @@ -4262,7 +4262,7 @@ public class VScrollTable extends FlowPanel } /** - * Sets the width to undefined + * Sets the width to undefined. */ public void setUndefinedWidth() { definedWidth = false; @@ -4289,7 +4289,7 @@ public class VScrollTable extends FlowPanel } /** - * Sets the expand ratio of the cell + * Sets the expand ratio of the cell. * * @param floatAttribute * The expand ratio @@ -4299,7 +4299,7 @@ public class VScrollTable extends FlowPanel } /** - * Returns the expand ratio of the cell + * Returns the expand ratio of the cell. * * @return The expand ratio */ @@ -4317,7 +4317,7 @@ public class VScrollTable extends FlowPanel } /** - * Handle column clicking + * Handle column clicking. */ @Override @@ -4344,7 +4344,7 @@ public class VScrollTable extends FlowPanel } /** - * Handles a event on the captions + * Handles a event on the captions. * * @param event * The event to handle @@ -4375,7 +4375,7 @@ public class VScrollTable extends FlowPanel } /** - * Returns the column key of the column + * Returns the column key of the column. * * @return The column key */ @@ -4545,7 +4545,7 @@ public class VScrollTable extends FlowPanel } /** - * Gets a footer cell which represents the given columnId + * Gets a footer cell which represents the given columnId. * * @param cid * The columnId @@ -4557,7 +4557,7 @@ public class VScrollTable extends FlowPanel } /** - * Gets a footer cell by using a column index + * Gets a footer cell by using a column index. * * @param index * The index of the column @@ -4572,7 +4572,7 @@ public class VScrollTable extends FlowPanel } /** - * Updates the cells contents when updateUIDL request is received + * Updates the cells contents when updateUIDL request is received. * * @param uidl * The UIDL @@ -4643,7 +4643,7 @@ public class VScrollTable extends FlowPanel } /** - * Set a footer cell for a specified column index + * Set a footer cell for a specified column index. * * @param index * The index @@ -4674,7 +4674,7 @@ public class VScrollTable extends FlowPanel } /** - * Remove a cell by using the columnId + * Remove a cell by using the columnId. * * @param colKey * The columnId to remove @@ -4685,7 +4685,7 @@ public class VScrollTable extends FlowPanel } /** - * Enable a column (Sets the footer cell) + * Enable a column (Sets the footer cell). * * @param cid * The columnId @@ -4703,14 +4703,14 @@ public class VScrollTable extends FlowPanel } /** - * Disable browser measurement of the table width + * Disable browser measurement of the table width. */ public void disableBrowserIntelligence() { hTableContainer.getStyle().setWidth(WRAPPER_WIDTH, Unit.PX); } /** - * Enable browser measurement of the table width + * Enable browser measurement of the table width. */ public void enableBrowserIntelligence() { hTableContainer.getStyle().clearWidth(); @@ -4728,7 +4728,7 @@ public class VScrollTable extends FlowPanel } /** - * Swap cells when the column are dragged + * Swap cells when the column are dragged. * * @param oldIndex * The old index of the cell @@ -6523,7 +6523,7 @@ public class VScrollTable extends FlowPanel } /** - * Toggle the selection of the row + * Toggle the selection of the row. */ public void toggleSelection() { selected = !selected; @@ -6791,7 +6791,7 @@ public class VScrollTable extends FlowPanel } /** - * Deselects all items + * Deselects all items. */ public void deselectAll() { for (Widget w : scrollBody) { @@ -7294,7 +7294,7 @@ public class VScrollTable extends FlowPanel } /** - * Helper function to build html snippet for column or row headers + * Helper function to build html snippet for column or row headers. * * @param uidl * possibly with values caption and icon @@ -7328,7 +7328,7 @@ public class VScrollTable extends FlowPanel /** * This method has logic which rows needs to be requested from server when - * user scrolls + * user scrolls. */ @Override @@ -7650,7 +7650,7 @@ public class VScrollTable extends FlowPanel } /** - * Moves the selection head to a specific row + * Moves the selection head to a specific row. * * @param row * The row to where the selection head should move @@ -7711,7 +7711,7 @@ public class VScrollTable extends FlowPanel } /** - * Handles the keyboard events handled by the table + * Handles the keyboard events handled by the table. * * @param keycode * The key code received diff --git a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/VSlider.java b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/VSlider.java index a5fdc40285..5cd956c9f9 100644 --- a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/VSlider.java +++ b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/VSlider.java @@ -466,7 +466,7 @@ public class VSlider extends SimpleFocusablePanel } /** - * Handles the keyboard events handled by the Slider + * Handles the keyboard events handled by the Slider. * * @param keycode * The key code received diff --git a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/VTree.java b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/VTree.java index 2dce082305..81d71e809a 100644 --- a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/VTree.java +++ b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/VTree.java @@ -520,7 +520,7 @@ public class VTree extends FocusElementPanel } /** - * Is a node selected in the tree + * Is a node selected in the tree. * * @param treeNode * The node to check @@ -1007,7 +1007,7 @@ public class VTree extends FocusElementPanel } /** - * Returns the children of the node + * Returns the children of the node. * * @return A set of tree nodes */ @@ -1067,7 +1067,7 @@ public class VTree extends FocusElementPanel } /** - * Travels up the hierarchy looking for this node + * Travels up the hierarchy looking for this node. * * @param child * The child which grandparent this is or is not @@ -1149,7 +1149,7 @@ public class VTree extends FocusElementPanel } /** - * Scrolls the caption into view + * Scrolls the caption into view. */ public void scrollIntoView() { WidgetUtil.scrollIntoViewVertically(nodeCaptionDiv); @@ -1189,7 +1189,7 @@ public class VTree extends FocusElementPanel } /** - * Deselects all items in the tree + * Deselects all items in the tree. */ public void deselectAll() { for (String key : selectedIds) { @@ -1510,7 +1510,7 @@ public class VTree extends FocusElementPanel } /** - * Returns the first common parent of two nodes + * Returns the first common parent of two nodes. * * @param node1 * The first node @@ -1560,7 +1560,7 @@ public class VTree extends FocusElementPanel } /** - * Sets the node currently in focus + * Sets the node currently in focus. * * @param node * The node to focus or null to remove the focus completely @@ -1622,7 +1622,7 @@ public class VTree extends FocusElementPanel } /** - * Focuses a node and scrolls it into view + * Focuses a node and scrolls it into view. * * @param node * The node to focus @@ -1708,7 +1708,7 @@ public class VTree extends FocusElementPanel } /** - * Handles the keyboard navigation + * Handles the keyboard navigation. * * @param keycode * The keycode of the pressed key diff --git a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/VTreeTable.java b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/VTreeTable.java index 99caa8bf44..5360da09c4 100644 --- a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/VTreeTable.java +++ b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/VTreeTable.java @@ -766,7 +766,7 @@ public class VTreeTable extends VScrollTable { /** * Icons rendered into first actual column in TreeTable, not to row header - * cell + * cell. */ @Override protected String buildCaptionHtmlSnippet(UIDL uidl) { diff --git a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/VTwinColSelect.java b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/VTwinColSelect.java index c996fdc06a..26d93762c2 100644 --- a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/VTwinColSelect.java +++ b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/VTwinColSelect.java @@ -73,7 +73,7 @@ public class VTwinColSelect extends VOptionGroupBase implements KeyDownHandler, private final Panel panel; /** - * A ListBox which catches double clicks + * A ListBox which catches double clicks. * */ public class DoubleClickListBox extends ListBox diff --git a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/CalendarConnector.java b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/CalendarConnector.java index 968defbe63..7c3910c009 100644 --- a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/CalendarConnector.java +++ b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/CalendarConnector.java @@ -134,7 +134,7 @@ public class CalendarConnector extends AbstractLegacyComponentConnector /** * Registers listeners on the calendar so server can be notified of the - * events + * events. */ protected void registerListeners() { getWidget().setListener(new DateClickListener() { @@ -409,7 +409,7 @@ public class CalendarConnector extends AbstractLegacyComponentConnector } /** - * Returns the ApplicationConnection used to connect to the server side + * Returns the ApplicationConnection used to connect to the server side. */ @Override public ApplicationConnection getClient() { @@ -583,7 +583,7 @@ public class CalendarConnector extends AbstractLegacyComponentConnector } /** - * Get the original action ID that was passed in from the shared state + * Get the original action ID that was passed in from the shared state. * * @since 7.1.2 * @param actionKey @@ -595,7 +595,7 @@ public class CalendarConnector extends AbstractLegacyComponentConnector } /** - * Get the text that is displayed for a context menu item + * Get the text that is displayed for a context menu item. * * @param actionKey * The unique action key @@ -606,7 +606,7 @@ public class CalendarConnector extends AbstractLegacyComponentConnector } /** - * Get the icon url for a context menu item + * Get the icon url for a context menu item. * * @param actionKey * The unique action key @@ -617,7 +617,7 @@ public class CalendarConnector extends AbstractLegacyComponentConnector } /** - * Get the start date for an action item + * Get the start date for an action item. * * @param actionKey * The unique action key @@ -632,7 +632,7 @@ public class CalendarConnector extends AbstractLegacyComponentConnector } /** - * Get the end date for an action item + * Get the end date for an action item. * * @param actionKey * The unique action key diff --git a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/VCalendarAction.java b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/VCalendarAction.java index 9e81ea22dc..1ca09f7806 100644 --- a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/VCalendarAction.java +++ b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/VCalendarAction.java @@ -24,7 +24,7 @@ import com.vaadin.v7.shared.ui.calendar.CalendarServerRpc; import com.vaadin.v7.shared.ui.calendar.DateConstants; /** - * Action performed by the calendar + * Action performed by the calendar. * * @since 7.1 * @author Vaadin Ltd. @@ -53,7 +53,7 @@ public class VCalendarAction extends Action { } /** - * Constructor + * Constructor. * * @param owner * The owner who trigger this kinds of events @@ -90,7 +90,7 @@ public class VCalendarAction extends Action { } /** - * Get the date and time when the action starts + * Get the date and time when the action starts. * * @return */ @@ -99,7 +99,7 @@ public class VCalendarAction extends Action { } /** - * Set the date when the actions start + * Set the date when the actions start. * * @param actionStartDate * The date and time when the action starts @@ -109,7 +109,7 @@ public class VCalendarAction extends Action { } /** - * Get the date and time when the action ends + * Get the date and time when the action ends. * * @return */ @@ -118,7 +118,7 @@ public class VCalendarAction extends Action { } /** - * Set the date and time when the action ends + * Set the date and time when the action ends. * * @param actionEndDate * The date and time when the action ends diff --git a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/CalendarEvent.java b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/CalendarEvent.java index 24f9f60b5a..d60aa7f6de 100644 --- a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/CalendarEvent.java +++ b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/CalendarEvent.java @@ -21,7 +21,7 @@ import com.google.gwt.i18n.client.DateTimeFormat; import com.vaadin.v7.shared.ui.calendar.DateConstants; /** - * A client side implementation of a calendar event + * A client side implementation of a calendar event. * * @since 7.1 * @author Vaadin Ltd. @@ -87,7 +87,7 @@ public class CalendarEvent { } /** - * Returns the start time of the event + * Returns the start time of the event. * * @return Time embedded in the {@link Date} object */ @@ -96,7 +96,7 @@ public class CalendarEvent { } /** - * Set the start time of the event + * Set the start time of the event. * * @param startTime * The time of the event. Use the time fields in the {@link Date} @@ -107,7 +107,7 @@ public class CalendarEvent { } /** - * Get the end time of the event + * Get the end time of the event. * * @return Time embedded in the {@link Date} object */ @@ -116,7 +116,7 @@ public class CalendarEvent { } /** - * Set the end time of the event + * Set the end time of the event. * * @param endTime * Time embedded in the {@link Date} object @@ -126,7 +126,7 @@ public class CalendarEvent { } /** - * Get the (server side) index of the event + * Get the (server side) index of the event. * * @return */ @@ -135,7 +135,7 @@ public class CalendarEvent { } /** - * Get the index of the slot where the event in rendered + * Get the index of the slot where the event in rendered. * * @return */ @@ -144,7 +144,7 @@ public class CalendarEvent { } /** - * Set the index of the slot where the event in rendered + * Set the index of the slot where the event in rendered. * * @param index * The index of the slot @@ -154,7 +154,7 @@ public class CalendarEvent { } /** - * Set the (server side) index of the event + * Set the (server side) index of the event. * * @param index * The index @@ -205,7 +205,7 @@ public class CalendarEvent { } /** - * Does the event use the 24h time format + * Does the event use the 24h time format. * * @param format24h * True if it uses the 24h format, false if it uses the 12h time @@ -235,7 +235,7 @@ public class CalendarEvent { } /** - * Get the time as a formatted string + * Get the time as a formatted string. * * @return */ @@ -248,7 +248,7 @@ public class CalendarEvent { } /** - * Get the amount of milliseconds between the start and end of the event + * Get the amount of milliseconds between the start and end of the event. * * @return */ @@ -257,7 +257,7 @@ public class CalendarEvent { } /** - * Get the amount of minutes between the start and end of the event + * Get the amount of minutes between the start and end of the event. * * @return */ @@ -296,7 +296,7 @@ public class CalendarEvent { } /** - * Does the event span several days + * Does the event span several days. * * @return */ diff --git a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/DateCellContainer.java b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/DateCellContainer.java index 81366922c2..1127c027c6 100644 --- a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/DateCellContainer.java +++ b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/DateCellContainer.java @@ -27,7 +27,7 @@ import com.vaadin.client.WidgetUtil; import com.vaadin.v7.client.ui.VCalendar; /** - * Internally used class by the Calendar + * Internally used class by the Calendar. * * since 7.1 */ diff --git a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/DateCellDayEvent.java b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/DateCellDayEvent.java index 7ba6d3f0a2..5855e25a2a 100644 --- a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/DateCellDayEvent.java +++ b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/DateCellDayEvent.java @@ -45,7 +45,7 @@ import com.vaadin.client.WidgetUtil; import com.vaadin.v7.shared.ui.calendar.DateConstants; /** - * Internally used by the calendar + * Internally used by the calendar. * * @since 7.1 */ diff --git a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/DateCellGroup.java b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/DateCellGroup.java index af1e1ed9a1..a4f2dd59f6 100644 --- a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/DateCellGroup.java +++ b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/DateCellGroup.java @@ -20,7 +20,7 @@ import java.util.Date; import java.util.List; /** - * Internally used by the calendar + * Internally used by the calendar. * * @since 7.1 */ diff --git a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/DateUtil.java b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/DateUtil.java index d0ed6f9149..1d06406e5a 100644 --- a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/DateUtil.java +++ b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/DateUtil.java @@ -21,7 +21,7 @@ import com.google.gwt.i18n.client.DateTimeFormat; import com.vaadin.v7.shared.ui.calendar.DateConstants; /** - * Utility class for {@link Date} operations + * Utility class for {@link Date} operations. * * @since 7.1 * @author Vaadin Ltd. diff --git a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/FocusableComplexPanel.java b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/FocusableComplexPanel.java index 86ff8f280f..088cf40907 100644 --- a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/FocusableComplexPanel.java +++ b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/FocusableComplexPanel.java @@ -33,7 +33,7 @@ import com.google.gwt.user.client.ui.impl.FocusImpl; import com.vaadin.client.Focusable; /** - * A ComplexPanel that can be focused + * A ComplexPanel that can be focused. * * @since 7.1 * @author Vaadin Ltd. @@ -113,7 +113,7 @@ public class FocusableComplexPanel extends ComplexPanel } /** - * Focus the panel + * Focus the panel. */ @Override public void focus() { diff --git a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/FocusableGrid.java b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/FocusableGrid.java index 7faae676a2..0f4f6e2c89 100644 --- a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/FocusableGrid.java +++ b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/FocusableGrid.java @@ -33,7 +33,7 @@ import com.google.gwt.user.client.ui.impl.FocusImpl; import com.vaadin.client.Focusable; /** - * A Grid that can be focused + * A Grid that can be focused. * * @since 7.1 * @author Vaadin Ltd. @@ -43,7 +43,7 @@ public class FocusableGrid extends Grid implements HasFocusHandlers, HasBlurHandlers, HasKeyDownHandlers, HasKeyPressHandlers, Focusable { /** - * Constructor + * Constructor. */ public FocusableGrid() { super(); @@ -125,7 +125,7 @@ public class FocusableGrid extends Grid implements HasFocusHandlers, } /** - * Focus the panel + * Focus the panel. */ @Override public void focus() { diff --git a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/FocusableHTML.java b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/FocusableHTML.java index a09cc996dd..d9641c1958 100644 --- a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/FocusableHTML.java +++ b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/FocusableHTML.java @@ -33,7 +33,7 @@ import com.google.gwt.user.client.ui.impl.FocusImpl; import com.vaadin.client.Focusable; /** - * A HTML widget that can be focused + * A HTML widget that can be focused. * * @since 7.1 * @author Vaadin Ltd. @@ -43,7 +43,7 @@ public class FocusableHTML extends HTML implements HasFocusHandlers, HasBlurHandlers, HasKeyDownHandlers, HasKeyPressHandlers, Focusable { /** - * Constructor + * Constructor. */ public FocusableHTML() { // make focusable, as we don't need access key magic we don't need to @@ -115,7 +115,7 @@ public class FocusableHTML extends HTML implements HasFocusHandlers, } /** - * Focus the panel + * Focus the panel. */ @Override public void focus() { diff --git a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/MonthEventLabel.java b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/MonthEventLabel.java index 042c007794..09f77ff9ee 100644 --- a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/MonthEventLabel.java +++ b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/MonthEventLabel.java @@ -24,7 +24,7 @@ import com.vaadin.client.Util; import com.vaadin.v7.client.ui.VCalendar; /** - * The label in a month cell + * The label in a month cell. * * @since 7.1 */ @@ -41,7 +41,7 @@ public class MonthEventLabel extends HTML implements HasTooltipKey { private CalendarEvent calendarEvent; /** - * Default constructor + * Default constructor. */ public MonthEventLabel() { setStylePrimaryName(STYLENAME); @@ -62,7 +62,7 @@ public class MonthEventLabel extends HTML implements HasTooltipKey { } /** - * Set the time of the event label + * Set the time of the event label. * * @param date * The date object that specifies the time @@ -73,7 +73,7 @@ public class MonthEventLabel extends HTML implements HasTooltipKey { } /** - * Set the caption of the event label + * Set the caption of the event label. * * @param caption * The caption string, can be HTML if @@ -112,7 +112,7 @@ public class MonthEventLabel extends HTML implements HasTooltipKey { } /** - * Set the (server side) index of the event + * Set the (server side) index of the event. * * @param index * The integer index @@ -122,7 +122,7 @@ public class MonthEventLabel extends HTML implements HasTooltipKey { } /** - * Set the Calendar instance this label belongs to + * Set the Calendar instance this label belongs to. * * @param calendar * The calendar instance @@ -132,7 +132,7 @@ public class MonthEventLabel extends HTML implements HasTooltipKey { } /** - * Is the event bound to a specific time + * Is the event bound to a specific time. * * @return */ @@ -141,7 +141,7 @@ public class MonthEventLabel extends HTML implements HasTooltipKey { } /** - * Is the event bound to a specific time + * Is the event bound to a specific time. * * @param timeSpecificEvent * True if the event is bound to a time, false if it is only diff --git a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/MonthGrid.java b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/MonthGrid.java index c5efcb9feb..e0fd56185c 100644 --- a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/MonthGrid.java +++ b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/MonthGrid.java @@ -176,7 +176,7 @@ public class MonthGrid extends FocusableGrid implements KeyDownHandler { } /** - * Disable or enable possibility to select ranges + * Disable or enable possibility to select ranges. */ public void setRangeSelect(boolean b) { rangeSelectDisabled = !b; diff --git a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/SimpleDayCell.java b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/SimpleDayCell.java index df0d74d3b5..470ce2f1c6 100644 --- a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/SimpleDayCell.java +++ b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/SimpleDayCell.java @@ -42,7 +42,7 @@ import com.vaadin.v7.client.ui.VCalendar; import com.vaadin.v7.shared.ui.calendar.DateConstants; /** - * A class representing a single cell within the calendar in month-view + * A class representing a single cell within the calendar in month-view. * * @since 7.1 * @author Vaadin Ltd. diff --git a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/WeekGrid.java b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/WeekGrid.java index 9ef922b364..b75bcae7c4 100644 --- a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/WeekGrid.java +++ b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/WeekGrid.java @@ -493,7 +493,7 @@ public class WeekGrid extends SimplePanel { } /** - * Get width of the single date cell + * Get width of the single date cell. * * @return Date cell width */ diff --git a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/WeekGridMinuteTimeRange.java b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/WeekGridMinuteTimeRange.java index ad7345e405..dbf2508741 100644 --- a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/WeekGridMinuteTimeRange.java +++ b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/WeekGridMinuteTimeRange.java @@ -18,7 +18,7 @@ package com.vaadin.v7.client.ui.calendar.schedule; import java.util.Date; /** - * Internally used by the calendar + * Internally used by the calendar. * * @since 7.1 */ diff --git a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/WeekLabel.java b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/WeekLabel.java index 5f609b87fe..ccea81a324 100644 --- a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/WeekLabel.java +++ b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/WeekLabel.java @@ -18,7 +18,7 @@ package com.vaadin.v7.client.ui.calendar.schedule; import com.google.gwt.user.client.ui.Label; /** - * A label in the {@link SimpleWeekToolbar} + * A label in the {@link SimpleWeekToolbar}. * * @since 7.1 */ diff --git a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/WeeklyLongEventsDateCell.java b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/WeeklyLongEventsDateCell.java index 01f602fdd7..d1d58ad159 100644 --- a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/WeeklyLongEventsDateCell.java +++ b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/WeeklyLongEventsDateCell.java @@ -21,7 +21,7 @@ import com.google.gwt.user.client.ui.HTML; import com.vaadin.v7.client.ui.VCalendar; /** - * Represents a cell used in {@link WeeklyLongEvents} + * Represents a cell used in {@link WeeklyLongEvents}. * * @since 7.1 */ diff --git a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/dd/CalendarDropHandler.java b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/dd/CalendarDropHandler.java index 22e65c80f4..081a4b7817 100644 --- a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/dd/CalendarDropHandler.java +++ b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/calendar/schedule/dd/CalendarDropHandler.java @@ -31,7 +31,7 @@ public abstract class CalendarDropHandler extends VAbstractDropHandler { protected final CalendarConnector calendarConnector; /** - * Constructor + * Constructor. * * @param connector * The connector of the calendar diff --git a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/customfield/CustomFieldConnector.java b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/customfield/CustomFieldConnector.java index f72672b43d..0c4ba8af31 100644 --- a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/customfield/CustomFieldConnector.java +++ b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/customfield/CustomFieldConnector.java @@ -39,7 +39,7 @@ public class CustomFieldConnector extends AbstractFieldConnector List<ComponentConnector> childComponents; /** - * Default constructor + * Default constructor. */ public CustomFieldConnector() { addConnectorHierarchyChangeHandler(this); diff --git a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/upload/UploadIFrameOnloadStrategyIE.java b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/upload/UploadIFrameOnloadStrategyIE.java index cac9481986..d9474a4c1c 100644 --- a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/upload/UploadIFrameOnloadStrategyIE.java +++ b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/upload/UploadIFrameOnloadStrategyIE.java @@ -19,7 +19,7 @@ import com.google.gwt.dom.client.Element; import com.vaadin.v7.client.ui.VUpload; /** - * IE does not have onload, detect onload via readystatechange + * IE does not have onload, detect onload via readystatechange. * */ public class UploadIFrameOnloadStrategyIE extends UploadIFrameOnloadStrategy { diff --git a/compatibility-client/src/main/java/com/vaadin/v7/client/widget/escalator/FlyweightCell.java b/compatibility-client/src/main/java/com/vaadin/v7/client/widget/escalator/FlyweightCell.java index b96d90078a..cf61dca8ad 100644 --- a/compatibility-client/src/main/java/com/vaadin/v7/client/widget/escalator/FlyweightCell.java +++ b/compatibility-client/src/main/java/com/vaadin/v7/client/widget/escalator/FlyweightCell.java @@ -24,8 +24,9 @@ import com.vaadin.v7.client.widget.escalator.FlyweightRow.CellIterator; import com.vaadin.v7.client.widgets.Escalator; /** - * A {@link FlyweightCell} represents a cell in the {@link com.vaadin.v7.client.widgets.Grid Grid} or - * {@link Escalator} at a certain point in time. + * A {@link FlyweightCell} represents a cell in the + * {@link com.vaadin.v7.client.widgets.Grid Grid} or {@link Escalator} at a + * certain point in time. * * <p> * Since the {@link FlyweightCell} follows the <code>Flyweight</code>-pattern @@ -51,7 +52,7 @@ public class FlyweightCell { } /** - * Returns the row index of the cell + * Returns the row index of the cell. */ public int getRow() { assertSetup(); @@ -59,7 +60,7 @@ public class FlyweightCell { } /** - * Returns the column index of the cell + * Returns the column index of the cell. */ public int getColumn() { assertSetup(); diff --git a/compatibility-client/src/main/java/com/vaadin/v7/client/widget/escalator/RowContainer.java b/compatibility-client/src/main/java/com/vaadin/v7/client/widget/escalator/RowContainer.java index 5eb1a8fa95..7058a96f3d 100644 --- a/compatibility-client/src/main/java/com/vaadin/v7/client/widget/escalator/RowContainer.java +++ b/compatibility-client/src/main/java/com/vaadin/v7/client/widget/escalator/RowContainer.java @@ -273,7 +273,7 @@ public interface RowContainer { throws IndexOutOfBoundsException, IllegalStateException; /** - * Returns the root element of RowContainer + * Returns the root element of RowContainer. * * @return RowContainer root element */ diff --git a/compatibility-client/src/main/java/com/vaadin/v7/client/widget/escalator/RowVisibilityChangeEvent.java b/compatibility-client/src/main/java/com/vaadin/v7/client/widget/escalator/RowVisibilityChangeEvent.java index ad2b6c65a6..87febd1416 100644 --- a/compatibility-client/src/main/java/com/vaadin/v7/client/widget/escalator/RowVisibilityChangeEvent.java +++ b/compatibility-client/src/main/java/com/vaadin/v7/client/widget/escalator/RowVisibilityChangeEvent.java @@ -35,7 +35,7 @@ public class RowVisibilityChangeEvent private final Range visibleRows; /** - * Creates a new row visibility change event + * Creates a new row visibility change event. * * @param firstVisibleRow * the index of the first visible row diff --git a/compatibility-client/src/main/java/com/vaadin/v7/client/widget/escalator/ScrollbarBundle.java b/compatibility-client/src/main/java/com/vaadin/v7/client/widget/escalator/ScrollbarBundle.java index cd0d4f1e38..4ffad154e9 100644 --- a/compatibility-client/src/main/java/com/vaadin/v7/client/widget/escalator/ScrollbarBundle.java +++ b/compatibility-client/src/main/java/com/vaadin/v7/client/widget/escalator/ScrollbarBundle.java @@ -169,7 +169,7 @@ public abstract class ScrollbarBundle implements DeferredWorker { } /** - * Checks whether the scroll handle is currently visible or not + * Checks whether the scroll handle is currently visible or not. * * @return <code>true</code> if the scroll handle is currently visible. * <code>false</code> if not. @@ -373,7 +373,7 @@ public abstract class ScrollbarBundle implements DeferredWorker { protected abstract String internalGetScrollSize(); /** - * Sets the primary style name + * Sets the primary style name. * * @param primaryStyleName * The primary style name to use @@ -496,7 +496,7 @@ public abstract class ScrollbarBundle implements DeferredWorker { protected abstract void internalForceScrollbar(boolean enable); /** - * Gets the length of the scrollbar + * Gets the length of the scrollbar. * * @return the length of the scrollbar in pixels */ diff --git a/compatibility-client/src/main/java/com/vaadin/v7/client/widget/grid/CellStyleGenerator.java b/compatibility-client/src/main/java/com/vaadin/v7/client/widget/grid/CellStyleGenerator.java index 59333bbcb1..07eccc894f 100644 --- a/compatibility-client/src/main/java/com/vaadin/v7/client/widget/grid/CellStyleGenerator.java +++ b/compatibility-client/src/main/java/com/vaadin/v7/client/widget/grid/CellStyleGenerator.java @@ -18,7 +18,7 @@ package com.vaadin.v7.client.widget.grid; import com.vaadin.v7.client.widgets.Grid; /** - * Callback interface for generating custom style names for cells + * Callback interface for generating custom style names for cells. * * @author Vaadin Ltd * @param <T> diff --git a/compatibility-client/src/main/java/com/vaadin/v7/client/widget/grid/DetailsGenerator.java b/compatibility-client/src/main/java/com/vaadin/v7/client/widget/grid/DetailsGenerator.java index 04c8ff42cd..da693dd4d9 100644 --- a/compatibility-client/src/main/java/com/vaadin/v7/client/widget/grid/DetailsGenerator.java +++ b/compatibility-client/src/main/java/com/vaadin/v7/client/widget/grid/DetailsGenerator.java @@ -25,7 +25,7 @@ import com.google.gwt.user.client.ui.Widget; */ public interface DetailsGenerator { - /** A details generator that provides no details */ + /** A details generator that provides no details. */ public static final DetailsGenerator NULL = new DetailsGenerator() { @Override public Widget getDetails(int rowIndex) { diff --git a/compatibility-client/src/main/java/com/vaadin/v7/client/widget/grid/RowStyleGenerator.java b/compatibility-client/src/main/java/com/vaadin/v7/client/widget/grid/RowStyleGenerator.java index b0e8c0da21..cfde9ef47d 100644 --- a/compatibility-client/src/main/java/com/vaadin/v7/client/widget/grid/RowStyleGenerator.java +++ b/compatibility-client/src/main/java/com/vaadin/v7/client/widget/grid/RowStyleGenerator.java @@ -18,13 +18,13 @@ package com.vaadin.v7.client.widget.grid; import java.io.Serializable; /** - * Callback interface for generating custom style names for data rows + * Callback interface for generating custom style names for data rows. * * @author Vaadin Ltd * @param <T> * the row type of the target grid * @see com.vaadin.v7.client.widgets.Grid#setRowStyleGenerator(RowStyleGenerator) - * Grid#setRowStyleGenerator(RowStyleGenerator) + * Grid#setRowStyleGenerator(RowStyleGenerator) * @since 7.4 */ public interface RowStyleGenerator<T> extends Serializable { diff --git a/compatibility-client/src/main/java/com/vaadin/v7/client/widget/grid/events/GridEnabledEvent.java b/compatibility-client/src/main/java/com/vaadin/v7/client/widget/grid/events/GridEnabledEvent.java index 7d563329a5..f41406e839 100644 --- a/compatibility-client/src/main/java/com/vaadin/v7/client/widget/grid/events/GridEnabledEvent.java +++ b/compatibility-client/src/main/java/com/vaadin/v7/client/widget/grid/events/GridEnabledEvent.java @@ -25,7 +25,7 @@ import com.google.gwt.event.shared.GwtEvent; */ public class GridEnabledEvent extends GwtEvent<GridEnabledHandler> { /** - * The type of this event + * The type of this event. */ public static final Type<GridEnabledHandler> TYPE = new Type<GridEnabledHandler>(); private final boolean enabled; diff --git a/compatibility-client/src/main/java/com/vaadin/v7/client/widget/grid/events/ScrollEvent.java b/compatibility-client/src/main/java/com/vaadin/v7/client/widget/grid/events/ScrollEvent.java index 2dfd6f6693..6427eb0304 100644 --- a/compatibility-client/src/main/java/com/vaadin/v7/client/widget/grid/events/ScrollEvent.java +++ b/compatibility-client/src/main/java/com/vaadin/v7/client/widget/grid/events/ScrollEvent.java @@ -18,14 +18,14 @@ package com.vaadin.v7.client.widget.grid.events; import com.google.gwt.event.shared.GwtEvent; /** - * An event that signifies that a scrollbar bundle has been scrolled + * An event that signifies that a scrollbar bundle has been scrolled. * * @author Vaadin Ltd * @since 7.4 */ public class ScrollEvent extends GwtEvent<ScrollHandler> { - /** The type of this event */ + /** The type of this event. */ public static final Type<ScrollHandler> TYPE = new Type<ScrollHandler>(); @Override diff --git a/compatibility-client/src/main/java/com/vaadin/v7/client/widget/grid/events/ScrollHandler.java b/compatibility-client/src/main/java/com/vaadin/v7/client/widget/grid/events/ScrollHandler.java index 1e805ce653..97befa3049 100644 --- a/compatibility-client/src/main/java/com/vaadin/v7/client/widget/grid/events/ScrollHandler.java +++ b/compatibility-client/src/main/java/com/vaadin/v7/client/widget/grid/events/ScrollHandler.java @@ -18,7 +18,7 @@ package com.vaadin.v7.client.widget.grid.events; import com.google.gwt.event.shared.EventHandler; /** - * A handler that gets called whenever a scrollbar bundle is scrolled + * A handler that gets called whenever a scrollbar bundle is scrolled. * * @author Vaadin Ltd * @since 7.4 diff --git a/compatibility-client/src/main/java/com/vaadin/v7/client/widget/grid/sort/SortEvent.java b/compatibility-client/src/main/java/com/vaadin/v7/client/widget/grid/sort/SortEvent.java index 2b07c6ac16..c8a5db6574 100644 --- a/compatibility-client/src/main/java/com/vaadin/v7/client/widget/grid/sort/SortEvent.java +++ b/compatibility-client/src/main/java/com/vaadin/v7/client/widget/grid/sort/SortEvent.java @@ -60,7 +60,7 @@ public class SortEvent<T> extends GwtEvent<SortHandler<?>> { /** * Static access to the GWT event type identifier associated with this Event - * class + * class. * * @return a type object, uniquely describing this event type. */ @@ -69,7 +69,7 @@ public class SortEvent<T> extends GwtEvent<SortHandler<?>> { } /** - * Get access to the Grid that fired this event + * Get access to the Grid that fired this event. * * @return the grid instance */ @@ -79,7 +79,7 @@ public class SortEvent<T> extends GwtEvent<SortHandler<?>> { } /** - * Get access to the Grid that fired this event + * Get access to the Grid that fired this event. * * @return the grid instance */ @@ -88,7 +88,7 @@ public class SortEvent<T> extends GwtEvent<SortHandler<?>> { } /** - * Get the sort ordering that is to be applied to the Grid + * Get the sort ordering that is to be applied to the Grid. * * @return a list of sort order objects */ diff --git a/compatibility-client/src/main/java/com/vaadin/v7/client/widgets/Escalator.java b/compatibility-client/src/main/java/com/vaadin/v7/client/widgets/Escalator.java index 759327f3ae..b8e2c483e8 100644 --- a/compatibility-client/src/main/java/com/vaadin/v7/client/widgets/Escalator.java +++ b/compatibility-client/src/main/java/com/vaadin/v7/client/widgets/Escalator.java @@ -1559,7 +1559,7 @@ public class Escalator extends Widget } /** - * Gets the child element that is visually at a certain index + * Gets the child element that is visually at a certain index. * * @param index * the index of the element to retrieve @@ -6637,7 +6637,7 @@ public class Escalator extends Widget } /** - * Adds a scroll handler to this escalator + * Adds a scroll handler to this escalator. * * @param handler * the scroll handler to add diff --git a/compatibility-client/src/main/java/com/vaadin/v7/client/widgets/Grid.java b/compatibility-client/src/main/java/com/vaadin/v7/client/widgets/Grid.java index 8b330ad603..366257c0e2 100644 --- a/compatibility-client/src/main/java/com/vaadin/v7/client/widgets/Grid.java +++ b/compatibility-client/src/main/java/com/vaadin/v7/client/widgets/Grid.java @@ -488,7 +488,7 @@ public class Grid<T> extends ResizeComposite implements HasSelectionHandlers<T>, } /** - * Merges columns cells in a row + * Merges columns cells in a row. * * @param columns * the columns which header should be merged @@ -526,7 +526,7 @@ public class Grid<T> extends ResizeComposite implements HasSelectionHandlers<T>, } /** - * Merges columns cells in a row + * Merges columns cells in a row. * * @param cells * The cells to merge. Must be from the same row. @@ -963,7 +963,7 @@ public class Grid<T> extends ResizeComposite implements HasSelectionHandlers<T>, } /** - * Returns the events consumed by the header + * Returns the events consumed by the header. * * @return a collection of BrowserEvents */ @@ -4862,7 +4862,7 @@ public class Grid<T> extends ResizeComposite implements HasSelectionHandlers<T>, } /** - * Returns the current header caption for this column + * Returns the current header caption for this column. * * @since 7.6 * @return the header caption string @@ -7212,7 +7212,7 @@ public class Grid<T> extends ResizeComposite implements HasSelectionHandlers<T>, } /** - * Gets the vertical scroll offset + * Gets the vertical scroll offset. * * @return the number of pixels this grid is scrolled down */ @@ -7221,7 +7221,7 @@ public class Grid<T> extends ResizeComposite implements HasSelectionHandlers<T>, } /** - * Sets the horizontal scroll offset + * Sets the horizontal scroll offset. * * @since 7.5.0 * @param px @@ -7232,7 +7232,7 @@ public class Grid<T> extends ResizeComposite implements HasSelectionHandlers<T>, } /** - * Gets the horizontal scroll offset + * Gets the horizontal scroll offset. * * @return the number of pixels this grid is scrolled to the right */ @@ -8490,7 +8490,7 @@ public class Grid<T> extends ResizeComposite implements HasSelectionHandlers<T>, } /** - * Adds a scroll handler to this grid + * Adds a scroll handler to this grid. * * @param handler * the scroll handler to add @@ -8591,7 +8591,7 @@ public class Grid<T> extends ResizeComposite implements HasSelectionHandlers<T>, } /** - * Sets the style generator that is used for generating styles for cells + * Sets the style generator that is used for generating styles for cells. * * @param cellStyleGenerator * the cell style generator to set, or <code>null</code> to @@ -8604,7 +8604,7 @@ public class Grid<T> extends ResizeComposite implements HasSelectionHandlers<T>, } /** - * Gets the style generator that is used for generating styles for cells + * Gets the style generator that is used for generating styles for cells. * * @return the cell style generator, or <code>null</code> if no generator is * set @@ -8614,7 +8614,7 @@ public class Grid<T> extends ResizeComposite implements HasSelectionHandlers<T>, } /** - * Sets the style generator that is used for generating styles for rows + * Sets the style generator that is used for generating styles for rows. * * @param rowStyleGenerator * the row style generator to set, or <code>null</code> to remove @@ -8626,7 +8626,7 @@ public class Grid<T> extends ResizeComposite implements HasSelectionHandlers<T>, } /** - * Gets the style generator that is used for generating styles for rows + * Gets the style generator that is used for generating styles for rows. * * @return the row style generator, or <code>null</code> if no generator is * set |