| 737 | } |
| 738 | |
| 739 | boost::optional<std::string> ModelObject_Impl::displayName() const { |
| 740 | boost::optional<std::string> result; |
| 741 | if (hasAdditionalProperties()) { |
| 742 | AdditionalProperties additionalProperties = this->additionalProperties(); |
| 743 | if (additionalProperties.hasFeature("displayName")) { |
| 744 | result = additionalProperties.getFeatureAsString("displayName"); |
| 745 | } |
| 746 | } |
| 747 | return result; |
| 748 | } |
| 749 | |
| 750 | bool ModelObject_Impl::setDisplayName(const std::string& displayName) { |
| 751 | return this->additionalProperties().setFeature("displayName", displayName); |
nothing calls this directly
no test coverage detected