diff options
author | John Ahlroos <john@vaadin.com> | 2012-09-07 11:22:30 +0300 |
---|---|---|
committer | John Ahlroos <john@vaadin.com> | 2012-09-07 11:22:33 +0300 |
commit | 3824b53479af107a989a4885871f7ba70c53204e (patch) | |
tree | 58d6ff0e1f7de8eeb1cbc3f89501e35e2c46cb82 /server/src/com/vaadin/ui/Label.java | |
parent | c74a3d6d7b7db4eeedcda9c2ae215c89c3b1394e (diff) | |
download | vaadin-framework-3824b53479af107a989a4885871f7ba70c53204e.tar.gz vaadin-framework-3824b53479af107a989a4885871f7ba70c53204e.zip |
Fixed references to XHTML and issue found in review #8294
Diffstat (limited to 'server/src/com/vaadin/ui/Label.java')
-rw-r--r-- | server/src/com/vaadin/ui/Label.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/server/src/com/vaadin/ui/Label.java b/server/src/com/vaadin/ui/Label.java index b58de68af2..8b5cd87648 100644 --- a/server/src/com/vaadin/ui/Label.java +++ b/server/src/com/vaadin/ui/Label.java @@ -68,7 +68,7 @@ public class Label extends AbstractComponent implements Property<String>, public static final ContentMode CONTENT_PREFORMATTED = ContentMode.PREFORMATTED; /** - * @deprecated From 7.0, use {@link ContentMode#XHTML} instead + * @deprecated From 7.0, use {@link ContentMode#HTML} instead */ @Deprecated public static final ContentMode CONTENT_XHTML = ContentMode.HTML; @@ -432,9 +432,9 @@ public class Label extends AbstractComponent implements Property<String>, * * <p> * In RAW, PREFORMATTED and TEXT modes, the label contents are compared as - * is. In XML, UIDL and XHTML modes, only CDATA is compared and tags - * ignored. If the other object is not a Label, its toString() return value - * is used in comparison. + * is. In XML, UIDL and HTML modes, only CDATA is compared and tags ignored. + * If the other object is not a Label, its toString() return value is used + * in comparison. * </p> * * @param other |