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;
public void itemClick(ItemClickEvent event);
}
- /**
- * 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
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;
import com.vaadin.event.dd.DragSource;
*/
@SuppressWarnings({ "deprecation" })
public class Table extends AbstractSelect implements Action.Container,
- Container.Ordered, Container.Sortable, ItemClickSource,
- ItemClickNotifier, DragSource, DropTarget, HasComponents {
+ Container.Ordered, Container.Sortable, ItemClickNotifier, DragSource,
+ DropTarget, HasComponents {
private static final Logger logger = Logger
.getLogger(Table.class.getName());
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.Transferable;
import com.vaadin.event.dd.DragAndDropEvent;
import com.vaadin.event.dd.DragSource;
*/
@SuppressWarnings({ "serial", "deprecation" })
public class Tree extends AbstractSelect implements Container.Hierarchical,
- Action.Container, ItemClickSource, ItemClickNotifier, DragSource,
- DropTarget {
+ Action.Container, ItemClickNotifier, DragSource, DropTarget {
/* Private members */