} else {
UIController cann = field.getAnnotation(UIController.class);
if (cann != null) {
injectionCache.put(field, cann.value());
} else {
Service sann = field.getAnnotation(Service.class);
if (sann != null) {
injectionCache.put(field, field.getType());
}
}
}