| 146 | { |
| 147 | public: |
| 148 | bool ValidateName(const String& type, const String& name) const override |
| 149 | { |
| 150 | ConfigItem::Ptr item = ConfigItem::GetByTypeAndName(Type::GetByName(type), name); |
| 151 | |
| 152 | if (!item || item->IsAbstract()) |
| 153 | return false; |
| 154 | |
| 155 | return true; |
| 156 | } |
| 157 | }; |
| 158 | |
| 159 | /** |
nothing calls this directly
no test coverage detected