return (Object) (info == null ? null : info.getContextualInstance());
}
public Object setValue(Object value)
{
ContextualInstanceInfo info = getCreationalContextInstances().get(entry.getValue());
Object oldValue = null;
if (info != null)
{
info.setContextualInstance(value);
}
else
{
info = new ContextualInstanceInfo();
info.setContextualInstance(value);
getCreationalContextInstances().put(entry.getValue(), info);
}
return oldValue;
}