![JAR search and dependency download from the Maven repository](/logo.png)
net.pms.medialibrary.gui.tab.dlnaview.SpecialFolderMenuItem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pms Show documentation
Show all versions of pms Show documentation
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