mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-13 04:45:01 -05:00
9ed970de05
* changed cmd line args (single panel frame) * simplified multi panel frame * changed window icon * create panels via PanelBuilder
20 lines
220 B
Java
20 lines
220 B
Java
|
|
package net.sourceforge.filebot.ui;
|
|
|
|
|
|
import javax.swing.Icon;
|
|
import javax.swing.JComponent;
|
|
|
|
|
|
public interface PanelBuilder {
|
|
|
|
public String getName();
|
|
|
|
|
|
public Icon getIcon();
|
|
|
|
|
|
public JComponent create();
|
|
|
|
}
|