/******************************************************************************* *******************************************************************************/ package at.gv.egiz.eaaf.core.api; /** * @author tlenz * */ public interface IDestroyableObject { /** * Manually deep destroy a Java object with all child objects like timers and threads * */ public void fullyDestroy(); }