Files
Glum/src/glum/gui/dock/action/Destroyable.java
Norberto Lopez 182cf3e76c Initial release
2013-04-22 19:51:15 +00:00

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();
}