/**
  * Indicates whether a dependency node produces any outputs that should be included in the
  * results.
  *
  * @param dependencyNode the dependency node, not null
  * @return true if any outputs are produces that should be included in the results
  */
 public boolean shouldOutputFromNode(DependencyNode dependencyNode) {
   ComputationTargetType targetType = dependencyNode.getComputationTarget().getType();
   return getOutputMode(targetType).shouldOutputFromNode(dependencyNode);
 }