From: Matti Tahvonen Date: Fri, 28 Aug 2009 06:18:18 +0000 (+0000) Subject: fixes #3169, thanks to Downlord X-Git-Tag: 6.7.0.beta1~2583 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=11b062115ad981a7aaa97b62907098c34c9189ca;p=vaadin-framework.git fixes #3169, thanks to Downlord svn changeset:8568/svn branch:6.1 --- diff --git a/src/com/vaadin/ui/SplitPanel.java b/src/com/vaadin/ui/SplitPanel.java index bad238d888..ae33bafa39 100644 --- a/src/com/vaadin/ui/SplitPanel.java +++ b/src/com/vaadin/ui/SplitPanel.java @@ -126,6 +126,20 @@ public class SplitPanel extends AbstractLayout { super.addComponent(c); } + /** + * @return the first Component of this SplitPanel. + */ + public Component getFirstComponent() { + return firstComponent; + } + + /** + * @return the second Component of this SplitPanel. + */ + public Component getSecondComponent() { + return secondComponent; + } + /** * Removes the component from this container. *