Exemple #1
0
 /**
  * Reply true iff this ToDoItem should be kept on the Designer's ToDoList. This should return
  * false if the poster has been deactivated, or if it can be determined that the problem that
  * raised this issue is no longer present.
  *
  * @param d the given designer
  * @return true if the todoitem is still valid
  */
 public boolean stillValid(Designer d) {
   if (thePoster == null) {
     return true;
   }
   if (theWizard != null && theWizard.isStarted() && !theWizard.isFinished()) {
     return true;
   }
   return thePoster.stillValid(this, d);
 }