aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/ui/Panel.java
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2012-03-04 12:28:11 +0200
committerArtur Signell <artur@vaadin.com>2012-03-04 12:31:22 +0200
commit016f5997ab5e30277f0cb17678ba0d81ba81fa97 (patch)
treec50ce2f926c62b10d4bf71450f1dd73ee533941e /src/com/vaadin/ui/Panel.java
parent90e48f640cc23ae574aa59d122497b0f676e01fe (diff)
downloadvaadin-framework-016f5997ab5e30277f0cb17678ba0d81ba81fa97.tar.gz
vaadin-framework-016f5997ab5e30277f0cb17678ba0d81ba81fa97.zip
#5890 Added getComponentCount to ComponentContainer
Diffstat (limited to 'src/com/vaadin/ui/Panel.java')
-rw-r--r--src/com/vaadin/ui/Panel.java9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/com/vaadin/ui/Panel.java b/src/com/vaadin/ui/Panel.java
index 63b57866c7..c3bca2a5bb 100644
--- a/src/com/vaadin/ui/Panel.java
+++ b/src/com/vaadin/ui/Panel.java
@@ -661,4 +661,13 @@ public class Panel extends AbstractComponentContainer implements Scrollable,
super.focus();
}
+ /*
+ * (non-Javadoc)
+ *
+ * @see com.vaadin.ui.ComponentContainer#getComponentCount()
+ */
+ public int getComponentCount() {
+ // This is so wrong... (#2924)
+ return content.getComponentCount();
+ }
}