Ejemplo n.º 1
0
 protected void runPostActions() throws DartModelException {
   while (actionsStart <= actionsEnd) {
     IPostAction postAction = actions[actionsStart++];
     if (POST_ACTION_VERBOSE) {
       System.out.println(
           "("
               + Thread.currentThread()
               + ") [DartModelOperation.runPostActions()] Running action "
               + postAction.getID()); // $NON-NLS-1$ //$NON-NLS-2$
     }
     postAction.run();
   }
 }