| 63 | } |
| 64 | |
| 65 | std::vector<std::string> Property::getValues() { |
| 66 | std::vector<std::string> values; |
| 67 | for (const auto &v : values_) { |
| 68 | values.push_back(v.to_string()); |
| 69 | } |
| 70 | return values; |
| 71 | } |
| 72 | |
| 73 | void Property::setSupportsExpressionLanguage(bool supportEl) { |
| 74 | supports_el_ = supportEl; |
no test coverage detected