net.sf.fmj.gui.controlpanel.Skin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fmj Show documentation
Show all versions of fmj Show documentation
Freedom for Media in Java
package net.sf.fmj.gui.controlpanel;
import javax.swing.*;
/**
* Provides icons to {@link SwingLookControlPanel}.
*
* @author Ken Larson
*
*/
public interface Skin
{
public ImageIcon getFastForwardIcon();
public ImageIcon getMuteOffIcon();
public ImageIcon getMuteOnIcon();
public ImageIcon getPauseIcon();
public ImageIcon getPlayIcon();
public ImageIcon getRewindIcon();
public ImageIcon getStepBackwardIcon();
public ImageIcon getStepForwardIcon();
public ImageIcon getStopIcon();
}