diff options
author | Artur Signell <artur.signell@itmill.com> | 2011-02-22 10:07:10 +0000 |
---|---|---|
committer | Artur Signell <artur.signell@itmill.com> | 2011-02-22 10:07:10 +0000 |
commit | a58a63e05df01debfb1538c1e7adf6f5a164919c (patch) | |
tree | 9c698446a868af57e35b4bf8fe59d33b9c936e59 /src/com/vaadin/ui | |
parent | 44c5c1f656fc8ebd5fe6d59dc89d743b80def886 (diff) | |
download | vaadin-framework-a58a63e05df01debfb1538c1e7adf6f5a164919c.tar.gz vaadin-framework-a58a63e05df01debfb1538c1e7adf6f5a164919c.zip |
Fixed javadoc typos
svn changeset:17366/svn branch:6.5
Diffstat (limited to 'src/com/vaadin/ui')
-rw-r--r-- | src/com/vaadin/ui/Upload.java | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/com/vaadin/ui/Upload.java b/src/com/vaadin/ui/Upload.java index 9023e8ed75..053e1897fc 100644 --- a/src/com/vaadin/ui/Upload.java +++ b/src/com/vaadin/ui/Upload.java @@ -218,7 +218,7 @@ public class Upload extends AbstractComponent implements Component.Focusable { } /** - * Upload.Received event is sent when the upload receives a file, regardless + * Upload.FinishedEvent is sent when the upload receives a file, regardless * of whether the reception was successful or failed. If you wish to * distinguish between the two cases, use either SucceededEvent or * FailedEvent, which are both subclasses of the FinishedEvent. @@ -303,7 +303,7 @@ public class Upload extends AbstractComponent implements Component.Focusable { } /** - * Upload.Interrupted event is sent when the upload is received, but the + * Upload.FailedEvent event is sent when the upload is received, but the * reception is interrupted for some reason. * * @author IT Mill Ltd. @@ -391,7 +391,8 @@ public class Upload extends AbstractComponent implements Component.Focusable { } /** - * Upload.Success event is sent when the upload is received successfully. + * Upload.SucceededEvent event is sent when the upload is received + * successfully. * * @author IT Mill Ltd. * @version @@ -415,7 +416,7 @@ public class Upload extends AbstractComponent implements Component.Focusable { } /** - * Upload.Started event is sent when the upload is started to received. + * Upload.StartedEvent event is sent when the upload is started to received. * * @author IT Mill Ltd. * @version |