if( !vcMap.containsKey(attrName.toLowerCase()) )
{
if( debug )System.out.println("vcMap not has "+attrName.toLowerCase());
return;
}
ValueController vc = vcMap.get(attrName.toLowerCase());
ToValueConvertor conv = getTypesConvertors().toValueFor(vc.getType());
if( conv==null )
return;
Object destValue = null;
try
{
destValue = conv.convertToValue(attrValue);
vc.setValue(destValue);
if( debug )System.out.println("attr Setted");
}
catch(Throwable e)
{