* @see javax.faces.convert.Converter#getAsString(javax.faces.context.FacesContext, javax.faces.component.UIComponent, java.lang.Object)
*/
public String getAsString(FacesContext context, UIComponent component,
Object value) {
if (value instanceof SimpleRowKey) {
SimpleRowKey key = (SimpleRowKey) value;
return key.toString();
}
throw new ConverterException("Value " + value + " is not supported by this converter");
}