summaryrefslogtreecommitdiffstats
path: root/server/src/com/vaadin/ui/Panel.java
diff options
context:
space:
mode:
authorJohn Ahlroos <john@vaadin.com>2012-09-07 11:22:30 +0300
committerJohn Ahlroos <john@vaadin.com>2012-09-07 11:22:33 +0300
commit3824b53479af107a989a4885871f7ba70c53204e (patch)
tree58d6ff0e1f7de8eeb1cbc3f89501e35e2c46cb82 /server/src/com/vaadin/ui/Panel.java
parentc74a3d6d7b7db4eeedcda9c2ae215c89c3b1394e (diff)
downloadvaadin-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/Panel.java')
-rw-r--r--server/src/com/vaadin/ui/Panel.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/server/src/com/vaadin/ui/Panel.java b/server/src/com/vaadin/ui/Panel.java
index c70c72f341..70598f5c14 100644
--- a/server/src/com/vaadin/ui/Panel.java
+++ b/server/src/com/vaadin/ui/Panel.java
@@ -90,7 +90,7 @@ public class Panel extends AbstractComponentContainer implements Scrollable,
* Creates a new empty panel with caption. Default layout is used.
*
* @param caption
- * the caption used in the panel (HTML/XHTML).
+ * the caption used in the panel (HTML).
*/
public Panel(String caption) {
this(caption, null);
@@ -100,7 +100,7 @@ public class Panel extends AbstractComponentContainer implements Scrollable,
* Creates a new empty panel with the given caption and content.
*
* @param caption
- * the caption of the panel (HTML/XHTML).
+ * the caption of the panel (HTML).
* @param content
* the content used in the panel.
*/
@@ -112,7 +112,7 @@ public class Panel extends AbstractComponentContainer implements Scrollable,
/**
* Sets the caption of the panel.
*
- * Note that the caption is interpreted as HTML/XHTML and therefore care
+ * Note that the caption is interpreted as HTML and therefore care
* should be taken not to enable HTML injection and XSS attacks using panel
* captions. This behavior may change in future versions.
*