MCPcopy Create free account
hub / github.com/MITK/MITK / IsExplicit

Method IsExplicit

Modules/Core/src/DataManagement/mitkPropertyKeyPath.cpp:67–78  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

65 bool PropertyKeyPath::IsEmpty() const { return m_NodeInfos.empty(); };
66
67 bool PropertyKeyPath::IsExplicit() const
68 {
69 for (const auto &pos : m_NodeInfos)
70 {
71 if ((pos.type == NodeInfo::NodeType::AnySelection) || (pos.type == NodeInfo::NodeType::AnyElement))
72 {
73 return false;
74 }
75 }
76
77 return true;
78 };
79
80 bool PropertyKeyPath::HasItemSelectionWildcardsOnly() const
81 {

Callers 9

AddTagOfInterestMethod · 0.80
AddPropertyPersistenceFunction · 0.80
SetTagValueMethod · 0.80
GetTagValueAsStringMethod · 0.80
AddTagPathMethod · 0.80
AddTagPathsMethod · 0.80
GetTagValueMethod · 0.80
AddPropertyPersistenceFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected