---------------------------------------------------------------------------
| 97 | |
| 98 | //--------------------------------------------------------------------------- |
| 99 | const char* vtkSMEnumerationDomain::GetEntryTextForValue(int value) |
| 100 | { |
| 101 | unsigned int idx = 0; |
| 102 | if (!this->IsInDomain(value, idx)) |
| 103 | { |
| 104 | return nullptr; |
| 105 | } |
| 106 | return this->GetEntryText(idx); |
| 107 | } |
| 108 | |
| 109 | //--------------------------------------------------------------------------- |
| 110 | int vtkSMEnumerationDomain::HasEntryText(const char* text) |
no test coverage detected