All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.pms.medialibrary.gui.tab.dlnaview.SpecialFolderMenuItem Maven / Gradle / Ivy

Go to download

PS3 Media Server is a cross-platform DLNA-compliant UPnP Media Server. Originally written to support the PlayStation 3, PS3 Media Server has been expanded to support a range of other media renderers, including smartphones, televisions, music players and more.

The newest version!
package net.pms.medialibrary.gui.tab.dlnaview;

import javax.swing.JMenuItem;

import net.pms.plugins.DlnaTreeFolderPlugin;

public class SpecialFolderMenuItem extends JMenuItem {
    private static final long serialVersionUID = -2269678999237368235L;
    private DlnaTreeFolderPlugin specialFolder;

    public SpecialFolderMenuItem(DlnaTreeFolderPlugin f){
    	super(f.getName());
    	setSpecialFolder(f);
    }

	public void setSpecialFolder(DlnaTreeFolderPlugin specialFolder) {
	    this.specialFolder = specialFolder;
    }

	public DlnaTreeFolderPlugin getSpecialFolder() {
	    return specialFolder;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy