| 65 |
|
bw.flush(); |
| 66 |
|
} |
| 67 |
|
|
| 68 |
< |
public static void printMachines(BufferedWriter bw, LinkedList list) throws IOException{ |
| 68 |
> |
public static void printAllMachines(BufferedWriter bw, LinkedList list) throws IOException{ |
| 69 |
|
bw.write("<table border=\"0\" align=\"center\">"); |
| 70 |
|
|
| 71 |
|
Iterator it = list.iterator(); |
| 72 |
|
while (it.hasNext()){ |
| 73 |
|
ReportPage rp = (ReportPage)it.next(); |
| 74 |
< |
bw.write("<tr><td><font size=\"4\"><a href=\"../"+rp.getWhen()+rp.getMachineName()+"."+rp.getReport()+".shtml\">"+rp.getMachineName()+"</a></font></td></tr>"); |
| 74 |
> |
bw.write("<tr><td><font size=\"4\"><a href=\"../"+rp.getWhen()+rp.getMachineName()+"."+rp.getReport()+".shtml\">"+rp.getWhen()+rp.getMachineName()+"</a></font></td></tr>"); |
| 75 |
|
} |
| 76 |
|
|
| 77 |
|
bw.write("</table>"); |