public void removeExecution(TradingAgentExecutionHandle executionHandle) {
ITradingAgentExecution execution = hierarchyContainer.removeTradingAgentExecution(executionHandle);
if (execution == null) {
throw new IllegalArgumentException("Handle: " + executionHandle + " does not correspont to an object");
}
execution.kill();
}
@Override
public void removeBinding(TradingAgentBindingHandle bindingHandle) {
hierarchyContainer.removeTradingAgentBinding(bindingHandle);