public void encodeBegin(FacesContext context, UIComponent component) throws IOException
{
String label = (String)component.getAttributes().get("label");
UIInputRadio uiInputRadio = (UIInputRadio)component;
List<?> lDm = (List<?>)component.getAttributes().get("value");
DataModel dm = new ListDataModel(lDm);
uiInputRadio.setValue(dm);
logger.debug("uiInputRadio()="+uiInputRadio.getRowCount());
ResponseWriter writer = context.getResponseWriter();
writer.startElement("li", component);
writer.writeAttribute("class", "iRadio", null);