From: Aleksi Hietanen Date: Mon, 12 Dec 2016 09:43:37 +0000 (+0200) Subject: Remove unused EventListener interface (#7953) X-Git-Tag: 8.0.0.alpha10~44 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=10415247e58f4d3c768fafe5dad9ec1b35383e6b;p=vaadin-framework.git Remove unused EventListener interface (#7953) Closes vaadin/framework8-issues#550 --- diff --git a/server/src/main/java/com/vaadin/event/EventListener.java b/server/src/main/java/com/vaadin/event/EventListener.java deleted file mode 100644 index 4bce75245a..0000000000 --- a/server/src/main/java/com/vaadin/event/EventListener.java +++ /dev/null @@ -1,50 +0,0 @@ -/* - * Copyright 2000-2016 Vaadin Ltd. - * - * Licensed under the Apache License, Version 2.0 (the "License"); you may not - * use this file except in compliance with the License. You may obtain a copy of - * the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the - * License for the specific language governing permissions and limitations under - * the License. - */ -package com.vaadin.event; - -import java.util.function.Consumer; - -/** - * A generic interface for connector event listeners. - * - * @author Vaadin Ltd. - * - * @param - * the event type - * - * @since 8.0 - */ -@FunctionalInterface -public interface EventListener - extends Consumer, ConnectorEventListener { - - /** - * Invoked when this listener receives an event from the event source to - * which it has been added. - *

- * Implementation note:In addition to customizing the - * Javadoc, this override is needed in all extending interfaces to make - * ReflectTools.findMethod work as expected. It uses - * Class.getDeclaredMethod, but even if it used getMethod instead, the - * superinterface argument type is ConnectorEvent, not the actual event - * type, after type erasure. - * - * @param event - * the received event, not null - */ - @Override - public void accept(EVENT event); -} diff --git a/server/src/main/java/com/vaadin/ui/Grid.java b/server/src/main/java/com/vaadin/ui/Grid.java index 7d9913409e..4e0b8b7457 100644 --- a/server/src/main/java/com/vaadin/ui/Grid.java +++ b/server/src/main/java/com/vaadin/ui/Grid.java @@ -33,6 +33,7 @@ import java.util.Objects; import java.util.Set; import java.util.function.BiFunction; import java.util.function.BinaryOperator; +import java.util.function.Consumer; import java.util.function.Function; import java.util.stream.Collectors; import java.util.stream.Stream; @@ -44,8 +45,8 @@ import com.vaadin.data.BinderValidationStatus; import com.vaadin.data.Listing; import com.vaadin.data.SelectionModel; import com.vaadin.event.ConnectorEvent; +import com.vaadin.event.ConnectorEventListener; import com.vaadin.event.ContextClickEvent; -import com.vaadin.event.EventListener; import com.vaadin.event.selection.MultiSelectionListener; import com.vaadin.event.selection.SelectionListener; import com.vaadin.event.selection.SingleSelectionListener; @@ -163,8 +164,8 @@ public class Grid extends AbstractListing }, /** - * Multiselection mode that maps to build-in - * {@link MultiSelectionModel}. + * Multiselection mode that maps to build-in {@link MultiSelectionModel} + * . * * @see MultiSelectionModelImpl */ @@ -472,7 +473,8 @@ public class Grid extends AbstractListing * @see Registration */ @FunctionalInterface - public interface ItemClickListener extends EventListener> { + public interface ItemClickListener + extends Consumer>, ConnectorEventListener { /** * Invoked when this listener receives a item click event from a Grid to * which it has been added.