| ");
out.print(key);
out.print(": | ");
}
public static void output_table_element_footer(ServletOutputStream out) throws IOException
{
out.print(" |
");
}
public static void output_table_element(ServletOutputStream out, String key, String value) throws IOException
{
output_table_element_header(out, key);
out.print((value==null) ? "" : value);
output_table_element_footer(out);
}
}