// Simply create a new model and populate with the elements in the set.
// We add the CellFactorySPI directly into the list and use the list
// renderer to display the Cell display names in the list.
DefaultListModel model = new DefaultListModel();
for (CellFactorySPI factory : factorySet) {
model.addElement(factory);
}
cellList.setModel(model);
cellList.setSelectedIndex(0);
}