}
// Auto-populate Exported values on SelectComponents
else if (Annotations.isAnnotationPresent(valueType, Exported.class))
{
List<Object> choiceList = new ArrayList<Object>();
Imported instances = addonRegistry.getServices(valueType);
for (Object instance : instances)
{
choiceList.add(instance);
instances.release(instance);
}
choices = choiceList;
}
selectComponent.setValueChoices(choices);
}