private void obtainPluginLoadedMethods(SpawnResult spawnResult, Method[] methods) {
for (final Method method : methods) {
final PluginLoaded annotation = method.getAnnotation(PluginLoaded.class);
if (annotation != null) {
final PluginLoadedInformation pli = new PluginLoadedInformation();
final Class<?>[] parameterTypes = method.getParameterTypes();
if (parameterTypes.length != 1) {
this.logger.warning("Wrong number of parameters for PluginLoaded annotations");
continue;