1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-11-11 03:45:06 -05:00
filebot/source/net/sourceforge/tuned/ui/notification/NotificationLayout.java
Reinhard Pointner b5bee237d6 * refactored matching
* added ProgressDialog for long-running matching
* added delayed invokeLater to TunedUtil
* removed generics from ListEntry (only subclasses where used anyway)
* minor cleanup in notification package
2008-04-27 17:36:27 +00:00

16 lines
235 B
Java

/*
* Created on 19.03.2005
*
*/
package net.sourceforge.tuned.ui.notification;
public interface NotificationLayout {
public void add(NotificationWindow notification);
public void remove(NotificationWindow notification);
}