------------------------------------------------------------------------------
| 315 | |
| 316 | //------------------------------------------------------------------------------ |
| 317 | int vtkExecutive::GetNumberOfInputConnections(int port) |
| 318 | { |
| 319 | vtkInformationVector* inputs = this->GetInputInformation(port); |
| 320 | if (inputs) |
| 321 | { |
| 322 | return inputs->GetNumberOfInformationObjects(); |
| 323 | } |
| 324 | return 0; |
| 325 | } |
| 326 | |
| 327 | //------------------------------------------------------------------------------ |
| 328 | int vtkExecutive::InputPortIndexInRange(int port, const char* action) |
no test coverage detected