Browse Source

explicitly declared SmartApplicationListener as ApplicationListener<ApplicationEvent>

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@1152 50f2f4bb-b051-0410-bef5-90022cba6387
pull/1/head
Juergen Hoeller 17 years ago
parent
commit
ec26065e84
  1. 2
      org.springframework.context/src/main/java/org/springframework/context/event/SmartApplicationListener.java

2
org.springframework.context/src/main/java/org/springframework/context/event/SmartApplicationListener.java

@ -27,7 +27,7 @@ import org.springframework.core.Ordered; @@ -27,7 +27,7 @@ import org.springframework.core.Ordered;
* @author Juergen Hoeller
* @since 3.0
*/
public interface SmartApplicationListener extends ApplicationListener, Ordered {
public interface SmartApplicationListener extends ApplicationListener<ApplicationEvent>, Ordered {
/**
* Determine whether this listener actually supports the given event type.

Loading…
Cancel
Save