}
}
private void handleDebugOff(VerticalCommand cmd) throws IMTPException, ServiceException, NotFoundException {
Object[] params = cmd.getParams();
AID introspector = (AID)params[0];
List targets = (List)params[1];
MainContainer impl = myContainer.getMain();
if(impl != null) {
// Deactivate debugging each element of the list
Iterator it = targets.iterator();
while(it.hasNext()) {
AID target = (AID)it.next();
ContainerID cid = impl.getContainerID(target);
NotificationSlice slice = (NotificationSlice)getSlice(cid.getName());
try {
slice.debugOff(introspector, target);