summaryrefslogtreecommitdiffstats
path: root/server/src/com/vaadin/event/LayoutEvents.java
diff options
context:
space:
mode:
authorPetri Heinonen <petri@vaadin.com>2012-08-23 10:05:42 +0300
committerLeif Åstrand <leif@vaadin.com>2012-08-30 15:32:22 +0300
commit4cd5619c1932df21e99b14b9f7bc8a98c495ab38 (patch)
treef4458f784fd2a9ea3bd3f15764bd15b73fa1014b /server/src/com/vaadin/event/LayoutEvents.java
parentf7a91d3f35c634cf1621445fa75d3b7f67016495 (diff)
downloadvaadin-framework-4cd5619c1932df21e99b14b9f7bc8a98c495ab38.tar.gz
vaadin-framework-4cd5619c1932df21e99b14b9f7bc8a98c495ab38.zip
refak listeners com.vaadin.event
Diffstat (limited to 'server/src/com/vaadin/event/LayoutEvents.java')
-rw-r--r--server/src/com/vaadin/event/LayoutEvents.java14
1 files changed, 14 insertions, 0 deletions
diff --git a/server/src/com/vaadin/event/LayoutEvents.java b/server/src/com/vaadin/event/LayoutEvents.java
index 7fc6e5a42d..7f88ddc640 100644
--- a/server/src/com/vaadin/event/LayoutEvents.java
+++ b/server/src/com/vaadin/event/LayoutEvents.java
@@ -78,6 +78,13 @@ public interface LayoutEvents {
* @param listener
* The listener to add
*/
+ public void addLayoutClickListener(LayoutClickListener listener);
+
+ /**
+ * @deprecated Since 7.0, replaced by
+ * {@link #addLayoutClickListener(LayoutClickListener)}
+ **/
+ @Deprecated
public void addListener(LayoutClickListener listener);
/**
@@ -86,6 +93,13 @@ public interface LayoutEvents {
* @param listener
* LayoutClickListener to be removed
*/
+ public void removeLayoutClickListener(LayoutClickListener listener);
+
+ /**
+ * @deprecated Since 7.0, replaced by
+ * {@link #removeLayoutClickListener(LayoutClickListener)}
+ **/
+ @Deprecated
public void removeListener(LayoutClickListener listener);
}