case MR:
break;
default:
// Time:avg
index++; // jp.17
IDuccProcessWorkItems pwi = process.getProcessWorkItems();
cbList[index].append("<td align=\"right\">");
if(pwi != null) {
cbList[index].append(pwi.getSecsAvg());
}
cbList[index].append("</td>");
// Time:max
index++; // jp.18
cbList[index].append("<td align=\"right\">");
if(pwi != null) {
cbList[index].append(pwi.getSecsMax());
}
cbList[index].append("</td>");
// Time:min
index++; // jp.19
cbList[index].append("<td align=\"right\">");
if(pwi != null) {
cbList[index].append(pwi.getSecsMin());
}
cbList[index].append("</td>");
// Done
index++; // jp.20
cbList[index].append("<td align=\"right\">");
if(pwi != null) {
cbList[index].append(pwi.getCountDone());
}
cbList[index].append("</td>");
// Error
index++; // jp.21
cbList[index].append("<td align=\"right\">");
if(pwi != null) {
cbList[index].append(pwi.getCountError());
}
cbList[index].append("</td>");
// Dispatch
index++; // jp.22
switch(dType) {
case Job:
cbList[index].append("<td align=\"right\">");
if(pwi != null) {
if(job.isCompleted()) {
cbList[index].append("0");
}
else {
cbList[index].append(pwi.getCountDispatch());
}
}
cbList[index].append("</td>");
break;
default:
break;
}
// Retry
index++; // jp.23
cbList[index].append("<td align=\"right\">");
if(pwi != null) {
cbList[index].append(pwi.getCountRetry());
}
cbList[index].append("</td>");
// Preempt
index++; // jp.24
cbList[index].append("<td align=\"right\">");
if(pwi != null) {
cbList[index].append(pwi.getCountPreempt());
}
cbList[index].append("</td>");
break;
}
// Jconsole:Url