brokenprogrammer / RapidTunes

A music player that lets you play music from all sources.
MIT License
7 stars 4 forks source link

Change table content of SearchResult to an global object that can be used. #11

Closed brokenprogrammer closed 7 years ago

brokenprogrammer commented 7 years ago

Right now the classes SearchResult.java (Local not yt's own) and SearchResultModel.java is working for the SongBrowserController as the object whose content is going to be displayed in the columns.

Later there will be songs from different sources and we need a global object to represent this so the SearchResult object should be changed to something else and the SearchResultModel should work with that object instead of SearchResults.

The object to be created will most likely be a Song.java object.

This can only be done after #5

brokenprogrammer commented 7 years ago

List of classes that this issue affects:

brokenprogrammer commented 7 years ago

Implemented in #24