I have a class that would like to implement 2 different kinds of MapChangeListeners, when I use the code below I get an error:
public class ArtistsDetailsController implements DetailsController, MapChangeListener<Integer, PaginatedResult<Track>>, MapChangeListener<Integer, PaginatedResult<Album>>{}
The error is given because i implement MapChangeListener 2 times, despite the fact they are different. How can I implement 2 MapChangeListeners?