예제 #1
0
 /** Set all error status in this result and all subresults as handled. */
 public void setErrorsHandled() {
   if (isError()) {
     setStatus(OperationResultStatus.HANDLED_ERROR);
   }
   for (OperationResult subresult : getSubresults()) {
     subresult.setErrorsHandled();
   }
 }