MCPcopy Create free account
hub / github.com/Kitware/VTK / PrintSelf

Method PrintSelf

IO/Core/vtkSortFileNames.cxx:84–106  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

82}
83
84void 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
108void vtkSortFileNames::SetInputFileNames(vtkStringArray* input)
109{

Callers

nothing calls this directly

Calls 4

GetNumberOfGroupsMethod · 0.95
GetNthGroupMethod · 0.95
GetFileNamesMethod · 0.95
GetNextIndentMethod · 0.80

Tested by

no test coverage detected