*/
@Override
public Object getAdapter(final Class key) {
if (key == IPropertySource.class) {
if (_propertySource == null)
_propertySource = new MapObjectPropertySource(((MapObject) getModel()));
return _propertySource;
}
return super.getAdapter(key);
}