if (XbFormatter.withXtermColors()) System.out.println(XbFormatter.BLACK_GREEN);
final String bound = "|";
String ver = bound + " XmlBlaster cluster node <" + glob.getId() + "> v" + glob.getReleaseId() + " " + glob.getBuildTimestamp();
int width = ver.length() + 6;
if (width < 48) width = 48;
ReplaceVariable sh = new ReplaceVariable();
String line = sh.charChain('-', width-2);
System.out.println("");
System.out.println(" "+line+" ");
System.out.println(ver + sh.charChain(' ', width-ver.length()-1) + bound);
boolean useKeyboard = glob.getProperty().get("useKeyboard", true);
if (useKeyboard) {
String help = bound + " READY " + duration + " - press <enter> for options";
System.out.println(help + sh.charChain(' ', width-help.length()-1) + bound);
} else {
String help = bound + " READY " + duration + " - no keyboard input available";
System.out.println(help + sh.charChain(' ', width-help.length()-1) + bound);
}
System.out.println(" "+line+" ");
if (XbFormatter.withXtermColors()) System.out.println(XbFormatter.ESC);
}
else