예제 #1
0
 /**
  * Runs the next component in the run list.
  *
  * <p>However, components depending on this component are not activated; we simply skip over it
  * and wait for other ones which are ready to finish running.
  */
 public void componentFailed(Component target) {
   if (runList.contains(target)) runList.remove(target);
   ComponentLog.trace("Failed trying to run component: " + target.toString());
   componentReady(null);
 }