From 108c95de6333f113129e63bb049e81d8b1a0924c Mon Sep 17 00:00:00 2001 From: michelou Date: Fri, 29 Aug 2003 08:43:11 +0000 Subject: - added printlnNbsp and printlnHline --- sources/ch/epfl/lamp/util/HTMLPrinter.java | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'sources/ch') diff --git a/sources/ch/epfl/lamp/util/HTMLPrinter.java b/sources/ch/epfl/lamp/util/HTMLPrinter.java index 6a1bd3dbe3..33e78326bd 100644 --- a/sources/ch/epfl/lamp/util/HTMLPrinter.java +++ b/sources/ch/epfl/lamp/util/HTMLPrinter.java @@ -375,6 +375,16 @@ public class HTMLPrinter { return this; } + /** + * Prints n HTML blank spaces followed by a new line. + * + * @param n The parameter n gives the number + * of printed blank spaces + */ + public HTMLPrinter printlnNbsp(int n) { + return printNbsp(n).line(); + } + /** * Prints an horizontal line separator followed by a new line. */ -- cgit v1.2.3