// 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.guessGetter(object);
// And cache the method if it's not a global property map
if (method != null)
pMap.setGetter(method);
}