summaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/event/Action.java
diff options
context:
space:
mode:
authorHenri Sara <henri.sara@itmill.com>2010-07-01 07:38:48 +0000
committerHenri Sara <henri.sara@itmill.com>2010-07-01 07:38:48 +0000
commita0f548a453c199eda1bf546dc940995c424519e7 (patch)
treedf93176e4f753421af0eb2bef3f31a72cbae8743 /src/com/vaadin/event/Action.java
parent1d0ecbb504fd593ef09b9989f5509a40a4b4394a (diff)
downloadvaadin-framework-a0f548a453c199eda1bf546dc940995c424519e7.tar.gz
vaadin-framework-a0f548a453c199eda1bf546dc940995c424519e7.zip
#5285 action and event related interfaces should be serializable
svn changeset:13987/svn branch:6.4
Diffstat (limited to 'src/com/vaadin/event/Action.java')
-rw-r--r--src/com/vaadin/event/Action.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/vaadin/event/Action.java b/src/com/vaadin/event/Action.java
index fcb8f165b4..b0af0de4be 100644
--- a/src/com/vaadin/event/Action.java
+++ b/src/com/vaadin/event/Action.java
@@ -79,7 +79,7 @@ public class Action implements Serializable {
* Action.Handler interface.<br/>
*
*/
- public interface Listener {
+ public interface Listener extends Serializable {
public void handleAction(Object sender, Object target);
}
@@ -95,7 +95,7 @@ public class Action implements Serializable {
public <T extends Action & Action.Listener> void removeAction(T action);
}
- public interface ShortcutNotifier {
+ public interface ShortcutNotifier extends Serializable {
public void addShortcutListener(ShortcutListener shortcut);
public void removeShortcutListener(ShortcutListener shortcut);