aboutsummaryrefslogtreecommitdiffstats
path: root/server/src/com/vaadin
diff options
context:
space:
mode:
authorLeif Åstrand <leif@vaadin.com>2012-08-28 16:54:09 +0300
committerLeif Åstrand <leif@vaadin.com>2012-08-28 16:59:09 +0300
commit0b93b5ada8db19e3144d36d94cc9230e34ff0bd4 (patch)
tree36961895f9a5efe66cdf6046fe107b75b07848f3 /server/src/com/vaadin
parentf7f5c6b09ad7f11315373c72cf83e3ebc4ad6aaf (diff)
downloadvaadin-framework-0b93b5ada8db19e3144d36d94cc9230e34ff0bd4.tar.gz
vaadin-framework-0b93b5ada8db19e3144d36d94cc9230e34ff0bd4.zip
Adjust javadoc to reflect reality
Diffstat (limited to 'server/src/com/vaadin')
-rw-r--r--server/src/com/vaadin/ui/Component.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/server/src/com/vaadin/ui/Component.java b/server/src/com/vaadin/ui/Component.java
index 0559cc5e6a..f0993aac6d 100644
--- a/server/src/com/vaadin/ui/Component.java
+++ b/server/src/com/vaadin/ui/Component.java
@@ -136,8 +136,9 @@ public interface Component extends ClientConnector, Sizeable, Serializable {
public void setStyleName(String style);
/**
- * Adds a style name to component. The style name will be rendered as a HTML
- * class name, which can be used in a CSS definition.
+ * Adds one or more style names to this component. Multiple styles can be
+ * specified as a space-separated list of style names. The style name will
+ * be rendered as a HTML class name, which can be used in a CSS definition.
*
* <pre>
* Label label = new Label(&quot;This text has style&quot;);