Examples of SongSummaryDTO


Examples of it.unipd.netmus.shared.SongSummaryDTO

            if (tmp != null && !tmp.equals("")) {
                Song song = ODF.get().load().type(Song.class).id(tmp).now();

                if (song != null) {
                    SongSummaryDTO song_dto = song.toSongSummaryDTO();
                    song_dto.setRatingForThisUser(Integer.parseInt(song_list
                            .get(tmp)));
                    map.put(tmp, song_dto);

                }
            }
View Full Code Here

Examples of it.unipd.netmus.shared.SongSummaryDTO

        tmp.setRating(this.rating);
        return tmp;
    }

    public SongSummaryDTO toSongSummaryDTO() {
        SongSummaryDTO tmp = new SongSummaryDTO(this.artist, this.title,
                this.album);
        tmp.setRating(this.rating);
        return tmp;
    }
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.