diff options
-rw-r--r-- | server/src/com/vaadin/ui/PopupDateField.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/server/src/com/vaadin/ui/PopupDateField.java b/server/src/com/vaadin/ui/PopupDateField.java index e95941e3fe..f0bb0d74fe 100644 --- a/server/src/com/vaadin/ui/PopupDateField.java +++ b/server/src/com/vaadin/ui/PopupDateField.java @@ -122,10 +122,10 @@ public class PopupDateField extends DateField { * Set a description that explains the usage of the Widget for users of * assistive devices. * - * @param descriptionForAssistiveDevices + * @param description * String with the description */ - public void setAssisitiveText(String description) { + public void setAssistiveText(String description) { getState().descriptionForAssistiveDevices = description; } @@ -135,7 +135,7 @@ public class PopupDateField extends DateField { * * @return String with the description */ - public String getAssisitiveText() { + public String getAssistiveText() { return getState().descriptionForAssistiveDevices; } } |