コード例 #1
0
 public void attachToParents(ResolvedConfigurationBuilder result) {
   LOGGER.debug("Attaching {} to its parents.", this);
   for (DependencyEdge dependency : incomingEdges) {
     dependency.attachToParents(this, result);
   }
 }