mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-13 04:45:01 -05:00
87e8d830ce
notes: * updated to MigLayout 3.6.3 * better exception handling in *TransferablePolicy * added checksum toggle button and artwork * poperly cancel computation tasks on reset * better "Total Progress" visibility behaviour * improved checksum table model classes, better update/repaint behaviour
10 lines
146 B
Java
10 lines
146 B
Java
|
|
package net.sourceforge.tuned;
|
|
|
|
|
|
public interface MessageHandler {
|
|
|
|
public void handle(String topic, Object... messages) throws Exception;
|
|
|
|
}
|