Package it.unipd.netmus.shared

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


        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

Related Classes of it.unipd.netmus.shared.SongSummaryDTO

Copyright © 2018 www.massapicom. 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.