diff options
author | Anna Koskinen <anna@vaadin.com> | 2014-11-25 17:23:45 +0200 |
---|---|---|
committer | Anna Koskinen <anna@vaadin.com> | 2014-11-25 18:07:02 +0200 |
commit | 75ca951246f4c40dbc6914539d2d2d4890d30089 (patch) | |
tree | 3cc7ef77868652f67a9ae3f204c0bc1dfa87adee /server | |
parent | dac74189ededf7d004b309215f7e9f64a3e4550c (diff) | |
download | vaadin-framework-75ca951246f4c40dbc6914539d2d2d4890d30089.tar.gz vaadin-framework-75ca951246f4c40dbc6914539d2d2d4890d30089.zip |
Add getter to SplitterState.positionReversed (#15285)
Change-Id: I1e3783d21cb5f2832838dfe36c91c7f6a4ddb313
Diffstat (limited to 'server')
-rw-r--r-- | server/src/com/vaadin/ui/AbstractSplitPanel.java | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/server/src/com/vaadin/ui/AbstractSplitPanel.java b/server/src/com/vaadin/ui/AbstractSplitPanel.java index 09f881cf46..e9b37f8cff 100644 --- a/server/src/com/vaadin/ui/AbstractSplitPanel.java +++ b/server/src/com/vaadin/ui/AbstractSplitPanel.java @@ -342,12 +342,26 @@ public abstract class AbstractSplitPanel extends AbstractComponentContainer { * Returns the unit of position of the splitter * * @return unit of position of the splitter + * @see #setSplitPosition(float, Unit) */ public Unit getSplitPositionUnit() { return posUnit; } /** + * Is the split position reversed. By default the split position is measured + * by the first region, but if split position is reversed the measuring is + * done by the second region instead. + * + * @since + * @return {@code true} if reversed, {@code false} otherwise. + * @see #setSplitPosition(float, boolean) + */ + public boolean isSplitPositionReversed() { + return getSplitterState(false).positionReversed; + } + + /** * Sets the minimum split position to the given position and unit. If the * split position is reversed, maximum and minimum are also reversed. * |