diff options
author | Artur Signell <artur.signell@itmill.com> | 2011-04-19 13:12:20 +0000 |
---|---|---|
committer | Artur Signell <artur.signell@itmill.com> | 2011-04-19 13:12:20 +0000 |
commit | a7fe2c40a6b54776c103563c0e7a14874510f9c7 (patch) | |
tree | a4c9494d3b0b32f54aa66c758266f12cbba535b3 /src | |
parent | 976d097a862c45946cbad9eeabe2079223315fd9 (diff) | |
download | vaadin-framework-a7fe2c40a6b54776c103563c0e7a14874510f9c7.tar.gz vaadin-framework-a7fe2c40a6b54776c103563c0e7a14874510f9c7.zip |
#6844 Getter for column generator
svn changeset:18388/svn branch:6.6
Diffstat (limited to 'src')
-rw-r--r-- | src/com/vaadin/ui/Table.java | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/com/vaadin/ui/Table.java b/src/com/vaadin/ui/Table.java index 290aa1cf09..9a80f00612 100644 --- a/src/com/vaadin/ui/Table.java +++ b/src/com/vaadin/ui/Table.java @@ -3035,6 +3035,18 @@ public class Table extends AbstractSelect implements Action.Container, } /** + * Returns the ColumnGenerator used to generate the given column. + * + * @param columnId + * The id of the generated column + * @return The ColumnGenerator used for the given columnId or null. + */ + public ColumnGenerator getColumnGenerator(Object columnId) + throws IllegalArgumentException { + return columnGenerators.get(columnId); + } + + /** * Removes a generated column previously added with addGeneratedColumn. * * @param columnId |