Examples of PlaylistDTO


Examples of it.unipd.netmus.shared.MusicLibraryDTO.PlaylistDTO

                    @Override
                    public void onSuccess(Boolean result) {
                        if (result) {
                            current_user.getMusicLibrary().addPlaylist(
                                    new PlaylistDTO(cleared_playlist_name));
                            setPlaylistList();
                        }
                        client_factory.getProfileView().stopLoading();
                    }
                });
View Full Code Here

Examples of it.unipd.netmus.shared.MusicLibraryDTO.PlaylistDTO

        }

        List<PlaylistDTO> playlists = new ArrayList<PlaylistDTO>();
        for (String tmp : this.playlists) {
            Playlist p = getPlaylistFromId(tmp);
            playlists.add(new PlaylistDTO(p.getName(), p.getSongs()));
        }

        MusicLibraryDTO library = new MusicLibraryDTO(map, playlists);

        library.setPreferred_artist(getPreferredArtist());
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.