From: Markus Koivisto Date: Wed, 23 Apr 2014 09:44:47 +0000 (+0300) Subject: Fixed javadoc XHTML to HTML and fixed typos (#13518) X-Git-Tag: 7.4.0.alpha1~4^2~4 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=c9bc18cd7392b843f208445ae3e48d226f866859;p=vaadin-framework.git Fixed javadoc XHTML to HTML and fixed typos (#13518) Change-Id: I9a61031b0ba786098db51d77d8c73dc9fb36aeb9 --- 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;