| 61 | } |
| 62 | |
| 63 | bool IsValidType(const String& type) const override |
| 64 | { |
| 65 | Type::Ptr ptype = Type::GetByName(type); |
| 66 | |
| 67 | if (!ptype) |
| 68 | return false; |
| 69 | |
| 70 | return ConfigObject::TypeInstance->IsAssignableFrom(ptype); |
| 71 | } |
| 72 | |
| 73 | String GetPluralName(const String& type) const override |
| 74 | { |
nothing calls this directly
no test coverage detected