]> source.dussan.org Git - vaadin-framework.git/commitdiff
fixes #3169, thanks to Downlord
authorMatti Tahvonen <matti.tahvonen@itmill.com>
Fri, 28 Aug 2009 06:18:18 +0000 (06:18 +0000)
committerMatti Tahvonen <matti.tahvonen@itmill.com>
Fri, 28 Aug 2009 06:18:18 +0000 (06:18 +0000)
svn changeset:8568/svn branch:6.1

src/com/vaadin/ui/SplitPanel.java

index bad238d888fb7b426ae859779fac7c6e69bfb4a8..ae33bafa39ac466f23d8350e35482c902f8b2195 100644 (file)
@@ -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.
      *