001 package com.hammurapi.config.runtime;
002
003 import com.hammurapi.config.bootstrap.Destroyable;
004
005 public interface DestroyableSink {
006
007 void addDestroyable(Destroyable child);
008
009 }