summaryrefslogtreecommitdiffstats
path: root/server/src/com/vaadin/data
diff options
context:
space:
mode:
authorHenrik Paul <henrik@vaadin.com>2014-12-15 13:23:29 +0200
committerHenrik Paul <henrik@vaadin.com>2014-12-15 13:30:46 +0200
commit11d7045192b09e391d71ecb7c4e5954eaa5bd954 (patch)
treef7ead62e971b38f426ad683e12a2b2a86bd3813f /server/src/com/vaadin/data
parentd5295b6257a90ef2be6a123fbb14c4538321bfe8 (diff)
downloadvaadin-framework-11d7045192b09e391d71ecb7c4e5954eaa5bd954.tar.gz
vaadin-framework-11d7045192b09e391d71ecb7c4e5954eaa5bd954.zip
GeneratedPropertyContainer returns the original container
Change-Id: Ia766f1e989d6a06d4b1746b0612c090b6fbd2735
Diffstat (limited to 'server/src/com/vaadin/data')
-rw-r--r--server/src/com/vaadin/data/util/GeneratedPropertyContainer.java9
1 files changed, 9 insertions, 0 deletions
diff --git a/server/src/com/vaadin/data/util/GeneratedPropertyContainer.java b/server/src/com/vaadin/data/util/GeneratedPropertyContainer.java
index 17472807b5..0f4f0be1dd 100644
--- a/server/src/com/vaadin/data/util/GeneratedPropertyContainer.java
+++ b/server/src/com/vaadin/data/util/GeneratedPropertyContainer.java
@@ -712,4 +712,13 @@ public class GeneratedPropertyContainer extends AbstractContainer implements
public Object addItemAt(int index) throws UnsupportedOperationException {
return wrappedContainer.addItemAt(index);
}
+
+ /**
+ * Returns the original underlying container.
+ *
+ * @return the original underlying container
+ */
+ public Container.Indexed getWrappedContainer() {
+ return wrappedContainer;
+ }
}