if (choices == null) {
return;
}
for (Choice<BigDecimal> choice : choices) {
CmisChoiceDecimal newChoice = new CmisChoiceDecimal();
convertChoiceDecimalList(choice.getChoice(), newChoice.getChoice());
newChoice.setDisplayName(choice.getDisplayName());
if (choice.getValue() != null) {
for (BigDecimal value : choice.getValue()) {
newChoice.getValue().add(value);
}
}
target.add(newChoice);
}