diff options
author | John Alhroos <john.ahlroos@itmill.com> | 2011-08-16 07:46:43 +0000 |
---|---|---|
committer | John Alhroos <john.ahlroos@itmill.com> | 2011-08-16 07:46:43 +0000 |
commit | c51bf5e7ab7b749fd056130ddc980e2366615b66 (patch) | |
tree | 8b430e2d547d34d57f80bfc92bdd532bc6507910 /src | |
parent | 3f92fa9ca963a931feb4dcd063aa6b538f064f06 (diff) | |
download | vaadin-framework-c51bf5e7ab7b749fd056130ddc980e2366615b66.tar.gz vaadin-framework-c51bf5e7ab7b749fd056130ddc980e2366615b66.zip |
Made ItemDescriptionGenerator serializable #5414
svn changeset:20401/svn branch:6.7
Diffstat (limited to 'src')
-rw-r--r-- | src/com/vaadin/ui/AbstractSelect.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/vaadin/ui/AbstractSelect.java b/src/com/vaadin/ui/AbstractSelect.java index f80fe70580..ba1821a53c 100644 --- a/src/com/vaadin/ui/AbstractSelect.java +++ b/src/com/vaadin/ui/AbstractSelect.java @@ -1935,7 +1935,7 @@ public abstract class AbstractSelect extends AbstractField implements * Implement this interface and pass it to Tree.setCellStyleGenerator or Table.setCellStyleGenerator to * generate mouse over descriptions ("tooltips") for the rows and cells in Table or for the items in Tree. */ - public interface ItemDescriptionGenerator { + public interface ItemDescriptionGenerator extends Serializable { /** * Called by Table when a cell (and row) is painted or a item is painted in Tree |