diff options
author | Sauli Tähkäpää <sauli@vaadin.com> | 2014-09-15 12:48:17 +0300 |
---|---|---|
committer | Sauli Tähkäpää <sauli@vaadin.com> | 2014-09-15 12:52:48 +0300 |
commit | 85181e8f2905e3f1174538108fbc3e941946fd56 (patch) | |
tree | e66618f7d64e61a1dcf5ebd26405f431d615ebb8 /client | |
parent | d7a59391f2f6ef6bc5de4e9dd0477e701ffab2fc (diff) | |
download | vaadin-framework-85181e8f2905e3f1174538108fbc3e941946fd56.tar.gz vaadin-framework-85181e8f2905e3f1174538108fbc3e941946fd56.zip |
Add missing comments. (#14482, #14565)
Change-Id: I647bc8105cbcd13dd1a0c291a9df01f5f43dd65a
Diffstat (limited to 'client')
-rw-r--r-- | client/src/com/vaadin/client/ui/VPopupCalendar.java | 2 | ||||
-rw-r--r-- | client/src/com/vaadin/client/ui/VUpload.java | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/client/src/com/vaadin/client/ui/VPopupCalendar.java b/client/src/com/vaadin/client/ui/VPopupCalendar.java index 577e267d3b..51b2ee22ec 100644 --- a/client/src/com/vaadin/client/ui/VPopupCalendar.java +++ b/client/src/com/vaadin/client/ui/VPopupCalendar.java @@ -275,7 +275,7 @@ public class VPopupCalendar extends VTextualDate implements Field, * setTextFieldEnabled(...) gets overridden in * TextualDateConnection.updateFromUIDL(...) * - * @since + * @since 7.3.1 */ public void setTextFieldTabIndex() { if (BrowserInfo.get().isIE() && !textFieldEnabled) { diff --git a/client/src/com/vaadin/client/ui/VUpload.java b/client/src/com/vaadin/client/ui/VUpload.java index 24ac9cd72d..f234ef6d65 100644 --- a/client/src/com/vaadin/client/ui/VUpload.java +++ b/client/src/com/vaadin/client/ui/VUpload.java @@ -312,6 +312,7 @@ public class VUpload extends SimplePanel { Scheduler.get().scheduleDeferred(startUploadCmd); } + /** For internal use only. May be removed or replaced in the future. */ public void disableTitle(boolean disable) { if (disable) { // Disable title attribute for upload element. |