public List getChildren()

in buildChainExport-server/src/main/java/org/jetbrains/teamcity/buildChainExport/nodes/PromotionNode.java [32:38]


  public List<GraphNode> getChildren() {
    return CollectionsUtil.convertCollection(myPromotion.getDependencies(), new Converter<GraphNode, BuildDependency>() {
      public GraphNode createFrom(@NotNull final BuildDependency buildDependency) {
        return new PromotionNode(buildDependency.getDependOn());
      }
    });
  }