| 82 | } |
| 83 | |
| 84 | void vtkSortFileNames::PrintSelf(ostream& os, vtkIndent indent) |
| 85 | { |
| 86 | this->Superclass::PrintSelf(os, indent); |
| 87 | os << indent << "InputFileNames: (" << this->GetInputFileNames() << ")\n"; |
| 88 | os << indent << "NumericSort: " << (this->GetNumericSort() ? "On\n" : "Off\n"); |
| 89 | os << indent << "IgnoreCase: " << (this->GetIgnoreCase() ? "On\n" : "Off\n"); |
| 90 | os << indent << "Grouping: " << (this->GetGrouping() ? "On\n" : "Off\n"); |
| 91 | os << indent << "SkipDirectories: " << (this->GetSkipDirectories() ? "On\n" : "Off\n"); |
| 92 | |
| 93 | os << indent << "NumberOfGroups: " << this->GetNumberOfGroups() << "\n"; |
| 94 | |
| 95 | if (this->GetGrouping()) |
| 96 | { |
| 97 | for (int i = 0; i < this->GetNumberOfGroups(); i++) |
| 98 | { |
| 99 | os << indent.GetNextIndent() << "Group[" << i << "]: (" << this->GetNthGroup(i) << ")\n"; |
| 100 | } |
| 101 | } |
| 102 | else |
| 103 | { |
| 104 | os << indent.GetNextIndent() << "FileNames: (" << this->GetFileNames() << ")\n"; |
| 105 | } |
| 106 | } |
| 107 | |
| 108 | void vtkSortFileNames::SetInputFileNames(vtkStringArray* input) |
| 109 | { |
nothing calls this directly
no test coverage detected