diff options
author | Artur Signell <artur@vaadin.com> | 2012-04-11 21:55:57 +0300 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2012-04-12 09:58:45 +0300 |
commit | f5099e517b29657e4f451f5948cea3895f1fccb6 (patch) | |
tree | 69f8c5049f9bd44e049c66119bc1b184443c9fb5 /src/com/vaadin/event | |
parent | 6c79839c1221c8fb3385fd546bcb1be011053cc6 (diff) | |
download | vaadin-framework-f5099e517b29657e4f451f5948cea3895f1fccb6.tar.gz vaadin-framework-f5099e517b29657e4f451f5948cea3895f1fccb6.zip |
Removed deprecated interface (#8169)
Diffstat (limited to 'src/com/vaadin/event')
-rw-r--r-- | src/com/vaadin/event/ItemClickEvent.java | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/com/vaadin/event/ItemClickEvent.java b/src/com/vaadin/event/ItemClickEvent.java index c503f8f9c9..bb41398e8d 100644 --- a/src/com/vaadin/event/ItemClickEvent.java +++ b/src/com/vaadin/event/ItemClickEvent.java @@ -6,7 +6,6 @@ package com.vaadin.event; import java.io.Serializable; import java.lang.reflect.Method; -import com.vaadin.data.Container; import com.vaadin.data.Item; import com.vaadin.data.Property; import com.vaadin.event.MouseEvents.ClickEvent; @@ -84,19 +83,6 @@ public class ItemClickEvent extends ClickEvent implements Serializable { } /** - * Components implementing - * - * @link {@link Container} interface may support emitting - * {@link ItemClickEvent}s. - * - * @deprecated Use {@link ItemClickNotifier} instead. ItemClickSource was - * deprecated in version 6.5. - */ - @Deprecated - public interface ItemClickSource extends ItemClickNotifier { - } - - /** * The interface for adding and removing <code>ItemClickEvent</code> * listeners. By implementing this interface a class explicitly announces * that it will generate an <code>ItemClickEvent</code> when one of its |