]> source.dussan.org Git - vaadin-framework.git/commitdiff
Fixed javadoc XHTML to HTML and fixed typos (#13518)
authorMarkus Koivisto <markus.koivisto@gmail.com>
Wed, 23 Apr 2014 09:44:47 +0000 (12:44 +0300)
committerVaadin Code Review <review@vaadin.com>
Wed, 23 Apr 2014 10:33:32 +0000 (10:33 +0000)
Change-Id: I9a61031b0ba786098db51d77d8c73dc9fb36aeb9

shared/src/com/vaadin/shared/ui/label/ContentMode.java

index ed0c66bc62dfb6ce0eb7306b647f051ef179a7fc..f5b984d49637ae376dd1a7402b57cde65883b0fa 100644 (file)
@@ -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;