/* 106 */ Map map = (Map)getMetaValueFactory().unwrap((MetaValue)value, getMapType());
/* 107 */ List list = new ArrayList();
/* 108 */ for (String name : map.keySet())
/* */ {
/* 110 */ String entry = (String)map.get(name);
/* 111 */ XAConnectionPropertyMetaData prop = new XAConnectionPropertyMetaData();
/* 112 */ prop.setName(name);
/* 113 */ prop.setValue(entry);
/* 114 */ list.add(prop);
/* */ }
/* 116 */ metaValue = getMetaValueFactory().create(list, propertyInfo.getType());
/* */ }
/* */ else