| 299 | } |
| 300 | |
| 301 | mitk::BaseProperty * mitk::BaseData::GetNonConstProperty(const std::string &propertyKey, const std::string &contextName, bool fallBackOnDefaultContext) |
| 302 | { |
| 303 | if (propertyKey.empty()) |
| 304 | return nullptr; |
| 305 | |
| 306 | if (contextName.empty() || fallBackOnDefaultContext) |
| 307 | return m_PropertyList->GetProperty(propertyKey); |
| 308 | |
| 309 | return nullptr; |
| 310 | } |
| 311 | |
| 312 | void mitk::BaseData::SetProperty(const std::string &propertyKey, BaseProperty *property, const std::string &contextName, bool fallBackOnDefaultContext) |
| 313 | { |
no test coverage detected