@SuppressWarnings("unchecked")
@Override
public void setProperty(String propPath, Object value) throws PropertyPathException, IllegalArgumentException {
if(!IBindableWidget.PROPERTY_VALUE.equals(propPath)) {
throw new MalformedPropPathException(propPath);
}
final IConverter<V, Object> cvrtr = getConverter();
if(cvrtr == null) {
// attempt to cast
try {