_availableWriter.println();
// Each value specified in the model will go into either the selected or available
// lists.
IPropertySelectionModel model = getModel();
int count = model.getOptionCount();
for (int i = 0; i < count; i++)
{
IMarkupWriter w = _availableWriter;
Object optionValue = model.getOption(i);
if (selectedSet.contains(optionValue))
w = _selectedWriter;
w.begin("option");
w.attribute("value", model.getValue(i));
w.print(model.getLabel(i));
w.end(); // <option>
w.println();
}
// Close the <select> tags