16 lines
235 B
Java
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);
|
||
|
}
|