------------------------------------------------------------------------------
| 60 | |
| 61 | //------------------------------------------------------------------------------ |
| 62 | void vtkDataArraySelection::PrintSelf(ostream& os, vtkIndent indent) |
| 63 | { |
| 64 | this->Superclass::PrintSelf(os, indent); |
| 65 | os << indent << "UnknownArraySetting: " << this->UnknownArraySetting << endl; |
| 66 | os << indent << "Number of Arrays: " << this->GetNumberOfArrays() << "\n"; |
| 67 | vtkIndent nindent = indent.GetNextIndent(); |
| 68 | int cc; |
| 69 | for (cc = 0; cc < this->GetNumberOfArrays(); cc++) |
| 70 | { |
| 71 | os << nindent << "Array: " << this->GetArrayName(cc) |
| 72 | << " is: " << (this->GetArraySetting(cc) ? "enabled" : "disabled") << " (" |
| 73 | << this->ArrayIsEnabled(this->GetArrayName(cc)) << ")" << endl; |
| 74 | } |
| 75 | } |
| 76 | |
| 77 | //------------------------------------------------------------------------------ |
| 78 | void vtkDataArraySelection::EnableArray(const char* name) |
nothing calls this directly
no test coverage detected