Android Open Source - PlayMusicExporter Playlist






From Project

Back to project page PlayMusicExporter.

License

The source code is released under:

Copyright (c) 2015 David Schulte Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Soft...

If you think the Android project PlayMusicExporter listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/*
 * Copyright (c) 2015 David Schulte/*www . j a  v a 2 s  .  c o  m*/
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */

package de.arcus.playmusiclib.items;

import de.arcus.playmusiclib.PlayMusicManager;
import de.arcus.playmusiclib.R;
import de.arcus.playmusiclib.datasources.MusicTrackDataSource;

/**
 * A playlist
 */
public class Playlist extends MusicTrackList {
    // Variables
    private long mId, mListType;
    private String mName;
    private String mOwnerName;

    public final static long TYPE_USER = 0;
    public final static long TYPE_QUEUE = 10;
    public final static long TYPE_RADIO = 50;
    public final static long TYPE_PUBLIC = 71;

    /**
     * Creates a data item
     * @param playMusicManager The manager
     */
    public Playlist(PlayMusicManager playMusicManager) {
        super(playMusicManager);
    }

    /**
     * @return Gets the playlist id
     */
    public long getId() {
        return mId;
    }

    /**
     * @param id Sets the playlist id
     */
    public void setId(long id) {
        this.mId = id;
    }

    /**
     * @return Gets the playlist type
     */
    long getListType() {
        return mListType;
    }

    /**
     * @param listType Sets the playlist type
     */
    public void setListType(long listType) {
        this.mListType = listType;
    }

    /**
     * @return Gets the playlist name
     */
    public String getName() {
        return mName;
    }

    /**
     * @param name Sets the name of the playlist
     */
    public void setName(String name) {
        this.mName = name;
    }

    /**
     * @return Gets the name of the playlist owner
     */
    public String getOwnerName() {
        return mOwnerName;
    }

    /**
     * @param ownerName Sets the name of the playlist owner
     */
    public void setOwnerName(String ownerName) {
        this.mOwnerName = ownerName;
    }


    @Override
    /**
     * Gets the playlist name
     */
    public String getTitle() {
        // Play queue
        if (getListType() == TYPE_QUEUE) {
            return mPlayMusicManager.getContext().getString(R.string.music_playlist_queue);
        }

        return getName();
    }

    @Override
    /**
     * Gets the list owner name
     */
    public String getDescription() {
        // Play queue
        if (getListType() == TYPE_QUEUE) {
            return mPlayMusicManager.getContext().getString(R.string.music_playlist_queue_description);
        }

        // Radio
        if (getListType() == TYPE_RADIO) {
            return mPlayMusicManager.getContext().getString(R.string.music_playlist_radio);
        }

        return getOwnerName();
    }

    @Override
    /**
     * Gets the id of the track list
     */
    public long getMusicTrackListID() {
        return getId();
    }

    /**
     * @return Playlist tracks should show the album artwork
     */
    public boolean getShowArtworkInTrack() {
        return true;
    }

    @Override
    /**
     * Loads all tracks from this playlist
     */
    protected void fetchTrackList() {
        // Music track data source
        MusicTrackDataSource musicTrackDataSource = new MusicTrackDataSource(mPlayMusicManager);

        // Load the track list
        mMusicTrackList = musicTrackDataSource.getByPlaylist(this);
    }
}




Java Source Code List

de.arcus.framework.ApplicationTest.java
de.arcus.framework.crashhandler.CrashActivity.java
de.arcus.framework.crashhandler.CrashHandler.java
de.arcus.framework.logger.Logger.java
de.arcus.framework.settings.AppSettings.java
de.arcus.framework.superuser.SuperUserCommandCallback.java
de.arcus.framework.superuser.SuperUserCommand.java
de.arcus.framework.superuser.SuperUserTools.java
de.arcus.framework.superuser.SuperUser.java
de.arcus.framework.utils.FileTools.java
de.arcus.framework.utils.MediaScanner.java
de.arcus.playmusicexporter2.ApplicationTest.java
de.arcus.playmusicexporter2.activitys.MusicTrackDetailActivity.java
de.arcus.playmusicexporter2.activitys.MusicTrackListActivity.java
de.arcus.playmusicexporter2.adapter.MusicTrackAdapter.java
de.arcus.playmusicexporter2.adapter.MusicTrackListAdapter.java
de.arcus.playmusicexporter2.fragments.MusicTrackDetailFragment.java
de.arcus.playmusicexporter2.fragments.MusicTrackListFragment.java
de.arcus.playmusicexporter2.fragments.NavigationDrawerFragment.java
de.arcus.playmusicexporter2.utils.ImageViewLoader.java
de.arcus.playmusicexporter2.utils.MusicPathBuilder.java
de.arcus.playmusiclib.AllAccessExporter.java
de.arcus.playmusiclib.ApplicationTest.java
de.arcus.playmusiclib.PlayMusicManager.java
de.arcus.playmusiclib.datasources.AlbumDataSource.java
de.arcus.playmusiclib.datasources.ArtistDataSource.java
de.arcus.playmusiclib.datasources.DataSource.java
de.arcus.playmusiclib.datasources.MusicTrackDataSource.java
de.arcus.playmusiclib.datasources.PlaylistDataSource.java
de.arcus.playmusiclib.enums.ID3v2Version.java
de.arcus.playmusiclib.exceptions.CouldNotOpenDatabaseException.java
de.arcus.playmusiclib.exceptions.NoSuperUserException.java
de.arcus.playmusiclib.exceptions.PlayMusicNotFoundException.java
de.arcus.playmusiclib.items.Album.java
de.arcus.playmusiclib.items.Artist.java
de.arcus.playmusiclib.items.MusicTrackList.java
de.arcus.playmusiclib.items.MusicTrack.java
de.arcus.playmusiclib.items.Playlist.java