* return the percent completed in the form of a progression bar
* @return html code of the progression bar
*/
public String getPercentCompleted() {
Task task = (Task)getCurrentRowObject();
return ProgressBar.buildProgressBar(task.percentCompleted());
}