summaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/ui/Table.java
diff options
context:
space:
mode:
authorArtur Signell <artur.signell@itmill.com>2010-11-05 16:00:14 +0000
committerArtur Signell <artur.signell@itmill.com>2010-11-05 16:00:14 +0000
commitd9aae37b8d56f9b8363690df8ca51c3f332873e6 (patch)
tree40dc208000d2c1aae0cbbd2b1ff2d51efd31f474 /src/com/vaadin/ui/Table.java
parent9098e8a164d1800d53e41ec3e7a06bdc3f82f1ca (diff)
downloadvaadin-framework-d9aae37b8d56f9b8363690df8ca51c3f332873e6.tar.gz
vaadin-framework-d9aae37b8d56f9b8363690df8ca51c3f332873e6.zip
#5821 - ItemClickSource should be ItemClickNotifier
svn changeset:15889/svn branch:6.5
Diffstat (limited to 'src/com/vaadin/ui/Table.java')
-rw-r--r--src/com/vaadin/ui/Table.java7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/com/vaadin/ui/Table.java b/src/com/vaadin/ui/Table.java
index 12f69ec606..56662112e3 100644
--- a/src/com/vaadin/ui/Table.java
+++ b/src/com/vaadin/ui/Table.java
@@ -30,6 +30,7 @@ import com.vaadin.event.Action.Handler;
import com.vaadin.event.DataBoundTransferable;
import com.vaadin.event.ItemClickEvent;
import com.vaadin.event.ItemClickEvent.ItemClickListener;
+import com.vaadin.event.ItemClickEvent.ItemClickNotifier;
import com.vaadin.event.ItemClickEvent.ItemClickSource;
import com.vaadin.event.MouseEvents.ClickEvent;
import com.vaadin.event.dd.DragAndDropEvent;
@@ -69,11 +70,11 @@ import com.vaadin.terminal.gwt.client.ui.dd.VLazyInitItemIdentifiers;
* @VERSION@
* @since 3.0
*/
-@SuppressWarnings("serial")
+@SuppressWarnings({ "serial", "deprecation" })
@ClientWidget(VScrollTable.class)
public class Table extends AbstractSelect implements Action.Container,
- Container.Ordered, Container.Sortable, ItemClickSource, DragSource,
- DropTarget {
+ Container.Ordered, Container.Sortable, ItemClickSource,
+ ItemClickNotifier, DragSource, DropTarget {
private static final Logger logger = Logger
.getLogger(Table.class.getName());