From aed142d4d844c03c001a46e39f3e0f7ddc4f46ce Mon Sep 17 00:00:00 2001
From: jvergara <jvergara@localhost>
Date: Fri, 21 Dec 2007 20:50:26 +0000
Subject: [PATCH] Fix for 1862 verbosity options for quicksetup tools
---
opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/util/HtmlProgressMessageFormatter.java | 19 +++++++++++++++++++
1 files changed, 19 insertions(+), 0 deletions(-)
diff --git a/opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/util/HtmlProgressMessageFormatter.java b/opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/util/HtmlProgressMessageFormatter.java
index 648e937..56d722f 100644
--- a/opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/util/HtmlProgressMessageFormatter.java
+++ b/opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/util/HtmlProgressMessageFormatter.java
@@ -257,6 +257,25 @@
}
/**
+ * Returns the formatted representation of a point.
+ * @return the formatted representation of the '.' text string.
+ */
+ public Message getFormattedPoint()
+ {
+ return Message.raw(UIFactory.applyFontToHtml(".",
+ UIFactory.PROGRESS_POINTS_FONT));
+ }
+
+ /**
+ * Returns the formatted representation of a space.
+ * @return the formatted representation of the ' ' text string.
+ */
+ public Message getSpace()
+ {
+ return Message.raw(SPACE);
+ }
+
+ /**
* Returns the formatted representation of a progress message for a given
* text.
* @param text the source text from which we want to get the formatted
--
Gitblit v1.10.0