diff options
author | Marc Englund <marc@vaadin.com> | 2012-10-01 11:30:59 +0300 |
---|---|---|
committer | Marc Englund <marc@vaadin.com> | 2012-10-01 11:30:59 +0300 |
commit | 31faeb75ef5c0977acab2c2ca75ecfce2d768949 (patch) | |
tree | 232770256179cf723add360300fa5d95b090de44 /server/src/com/vaadin/ui/Component.java | |
parent | d2db8f9054376b9b817f170426ef6a9f27990b0f (diff) | |
parent | 108ead76188fd8b91bddef5252eb875958babbe0 (diff) | |
download | vaadin-framework-31faeb75ef5c0977acab2c2ca75ecfce2d768949.tar.gz vaadin-framework-31faeb75ef5c0977acab2c2ca75ecfce2d768949.zip |
Merge branch 'primary-stylename' into sass
Diffstat (limited to 'server/src/com/vaadin/ui/Component.java')
-rw-r--r-- | server/src/com/vaadin/ui/Component.java | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/server/src/com/vaadin/ui/Component.java b/server/src/com/vaadin/ui/Component.java index 320a9dc97c..dd7ea6278b 100644 --- a/server/src/com/vaadin/ui/Component.java +++ b/server/src/com/vaadin/ui/Component.java @@ -198,6 +198,19 @@ public interface Component extends ClientConnector, Sizeable, Serializable { public void removeStyleName(String style); /** + * FIXME Javadoc + */ + public String getPrimaryStyleName(); + + /** + * FIXME Javadoc + * + * @param style + * The stylename to set + */ + public void setPrimaryStylename(String style); + + /** * Tests whether the component is enabled or not. A user can not interact * with disabled components. Disabled components are rendered in a style * that indicates the status, usually in gray color. Children of a disabled |