diff options
author | Markus Koivisto <markus.koivisto@gmail.com> | 2014-04-23 12:44:47 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2014-04-23 10:33:32 +0000 |
commit | c9bc18cd7392b843f208445ae3e48d226f866859 (patch) | |
tree | db92926837ff3c0e61d6322278fef05c9116aa27 /shared | |
parent | e77818472d1195b2937f3f654712afec00fadc26 (diff) | |
download | vaadin-framework-c9bc18cd7392b843f208445ae3e48d226f866859.tar.gz vaadin-framework-c9bc18cd7392b843f208445ae3e48d226f866859.zip |
Fixed javadoc XHTML to HTML and fixed typos (#13518)
Change-Id: I9a61031b0ba786098db51d77d8c73dc9fb36aeb9
Diffstat (limited to 'shared')
-rw-r--r-- | shared/src/com/vaadin/shared/ui/label/ContentMode.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/shared/src/com/vaadin/shared/ui/label/ContentMode.java b/shared/src/com/vaadin/shared/ui/label/ContentMode.java index ed0c66bc62..f5b984d496 100644 --- a/shared/src/com/vaadin/shared/ui/label/ContentMode.java +++ b/shared/src/com/vaadin/shared/ui/label/ContentMode.java @@ -27,7 +27,7 @@ public enum ContentMode { TEXT, /** - * Content mode, where the label contains pre formatted text. In this mode + * Content mode, where the label contains preformatted text. In this mode * newlines are preserved when rendered on the screen. */ PREFORMATTED, @@ -39,18 +39,18 @@ public enum ContentMode { /** * Content mode, where the label contains well-formed or well-balanced XML. - * This is handled in the same way as {@link #XHTML}. + * This is handled in the same way as {@link #HTML}. * - * @deprecated Use {@link #XHTML} instead + * @deprecated Use {@link #HTML} instead */ @Deprecated XML, /** * Legacy content mode, where the label contains RAW output. This is handled - * in exactly the same way as {@link #XHTML}. + * in exactly the same way as {@link #HTML}. * - * @deprecated Use {@link #XHTML} instead + * @deprecated Use {@link #HTML} instead */ @Deprecated RAW; |