mirror of
https://github.com/JHUAPL/Glum.git
synced 2026-01-09 00:47:54 -05:00
11 lines
215 B
Java
11 lines
215 B
Java
package glum.gui.dock.action;
|
|
|
|
public interface Destroyable
|
|
{
|
|
/**
|
|
* Notification method sent when this object should be destroyed and all associated references should be released.
|
|
*/
|
|
public void destroy();
|
|
|
|
}
|