//loop throught the number of sub items, make a new composite for each sub item.
//Add the spacer, the label, then the buttons that are applicable for each sub item.
int i=0;
for (Iterator iter = item.getSubItems().iterator(); iter.hasNext(); i++) {
AbstractSubItem subItem = (AbstractSubItem)iter.next();
if( subItem instanceof RepeatedSubItem ) {
//Get the sub item to add.
RepeatedSubItem repeatedSubItem = (RepeatedSubItem)subItem;
String values = repeatedSubItem.getValues();