File tree Expand file tree Collapse file tree
library/src/main/java/com/proxerme/library/event Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ package com .proxerme .library .event ;
2+
3+ import java .util .List ;
4+
5+ /**
6+ * TODO: Describe Class
7+ *
8+ * @author Ruben Gees
9+ */
10+ public interface IListEvent <T > extends IEvent <List <T >> {
11+ }
Original file line number Diff line number Diff line change 33import android .support .annotation .NonNull ;
44
55import com .proxerme .library .entity .Conference ;
6- import com .proxerme .library .event .IEvent ;
6+ import com .proxerme .library .event .IListEvent ;
77
88import java .util .List ;
99
1212 *
1313 * @author Ruben Gees
1414 */
15- public class ConferencesEvent implements IEvent < List < Conference > > {
15+ public class ConferencesEvent implements IListEvent < Conference > {
1616
1717 private List <Conference > conferences ;
1818
Original file line number Diff line number Diff line change 33import android .support .annotation .NonNull ;
44
55import com .proxerme .library .entity .News ;
6- import com .proxerme .library .event .IEvent ;
6+ import com .proxerme .library .event .IListEvent ;
77
88import java .util .List ;
99
1212 *
1313 * @author Ruben Gees
1414 */
15- public class NewsEvent implements IEvent < List < News > > {
15+ public class NewsEvent implements IListEvent < News > {
1616
1717 private List <News > item ;
1818
You can’t perform that action at this time.
0 commit comments