// property map was probably added to config programmatically or through
// a config file, rather than being generated from a class.
if (method == null && pmap != null)
{
// Guess what the setter might be
method = pmap.guessSetter(object);
// And cache the method if it's not a global property map
if (method != null && global == false)
pmap.setSetter(method);
}