diff options
author | Artur Signell <artur.signell@itmill.com> | 2010-11-23 16:25:24 +0000 |
---|---|---|
committer | Artur Signell <artur.signell@itmill.com> | 2010-11-23 16:25:24 +0000 |
commit | df3ecc9cb9eda61e0837ffb6909a5d7bacb6572f (patch) | |
tree | ac76e9acfb668ced69a5547bfdda3e4bcfeb0317 /src/com/vaadin/ui/themes | |
parent | 3cddcbae1f2064ec4524764ea883af10a5039080 (diff) | |
download | vaadin-framework-df3ecc9cb9eda61e0837ffb6909a5d7bacb6572f.tar.gz vaadin-framework-df3ecc9cb9eda61e0837ffb6909a5d7bacb6572f.zip |
#6020 - Split SplitPanel into HorizontalSplitPanel and VerticalSplitPanel
Updated demos and tests to use VerticalSplitPanel/HorizontalSplitPanel
svn changeset:16114/svn branch:6.5
Diffstat (limited to 'src/com/vaadin/ui/themes')
-rw-r--r-- | src/com/vaadin/ui/themes/Reindeer.java | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/com/vaadin/ui/themes/Reindeer.java b/src/com/vaadin/ui/themes/Reindeer.java index 198d7c1515..b2d588d9bd 100644 --- a/src/com/vaadin/ui/themes/Reindeer.java +++ b/src/com/vaadin/ui/themes/Reindeer.java @@ -7,8 +7,9 @@ import com.vaadin.ui.CssLayout; import com.vaadin.ui.FormLayout; import com.vaadin.ui.GridLayout; import com.vaadin.ui.HorizontalLayout; -import com.vaadin.ui.SplitPanel; +import com.vaadin.ui.HorizontalSplitPanel; import com.vaadin.ui.VerticalLayout; +import com.vaadin.ui.VerticalSplitPanel; public class Reindeer extends BaseTheme { @@ -163,7 +164,8 @@ public class Reindeer extends BaseTheme { /** * Changes the background of a layout to white. Applies to * {@link VerticalLayout}, {@link HorizontalLayout}, {@link GridLayout}, - * {@link FormLayout}, {@link CssLayout} and {@link SplitPanel}. + * {@link FormLayout}, {@link CssLayout}, {@link VerticalSplitPanel} and + * {@link HorizontalSplitPanel}. * <p> * <em>Does not revert any contained components back to normal if some * parent layout has style {@link #LAYOUT_BLACK} applied.</em> @@ -173,7 +175,8 @@ public class Reindeer extends BaseTheme { /** * Changes the background of a layout to a shade of blue. Applies to * {@link VerticalLayout}, {@link HorizontalLayout}, {@link GridLayout}, - * {@link FormLayout}, {@link CssLayout} and {@link SplitPanel}. + * {@link FormLayout}, {@link CssLayout}, {@link VerticalSplitPanel} and + * {@link HorizontalSplitPanel}. * <p> * <em>Does not revert any contained components back to normal if some * parent layout has style {@link #LAYOUT_BLACK} applied.</em> |