8384858687888990919293
} catch (Throwable error) { result = new TransitionResult(change, error); } resultSet.addResult(result); if (result.getError() == null && moduleStateChangeNotifier != null) { moduleStateChangeNotifier.notify(moduleStateHolder, result); } }
8081828384858687888990
108109110111112113114115116117
} private TransitionResultSet newTransitionResultSet() { TransitionResultSet result = new TransitionResultSet(); ModuleStateChange stateChange = new ModuleStateChange(Transition.LOADED_TO_UNLOADED, new SimpleModuleDefinition("myModule")); result.addResult(new TransitionResult(stateChange)); return result; } }