<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html><head>
<meta content="text/html; charset=UTF-8" http-equiv="content-type"><title>No Tasks (yet)</title>
</head><body>
<br>
<span style="color: rgb(32, 64, 160);">
/**
<br>
* This page shows the status of tasks that are running
<br>
* <b>@param</b> request The request from the end-user
<br>
*/</span>
<br>
<b><span style="color: rgb(127, 0, 85);">public</span></b> <b><span style="color: rgb(127, 0, 85);">void</span></b> showTasks(WebRequest request){
<br>
<span style="color: rgb(63, 127, 95);">// explain that no tasks are running right now
</span><br>
String result = "<span style="font-weight: bold;">404 - No tasks were found running</span>"<br>
<span style="color: rgb(63, 127, 95);">// write everything for the user to read
</span><br>
request.setAnswer(result);
<br>
}
</body></html>