getProperty = true;
}
}
if( !getProperty )continue;
ToStringConverter conv = convertors.toStringFrom(vc.getType());
if( conv==null )continue;
try{
Object objValue = vc.getValue();
if( objValue==null )continue;
String key = propertyPrefix==null ? propName : propertyPrefix + propName;
String textValue = conv.convertToString(objValue);
if( textValue==null )continue;
setProperty(key, textValue);
}catch(Throwable e){
Logger.getLogger(GuiKeeper.class.getName()).log(Level.WARNING,null,e);