public static java.lang.String | getMessageTag(java.lang.String tag)Creates a string containing the current date/time, and the tag
Calendar c = Calendar.getInstance();
if (tag == null) {
return String.format(Messages.Console_Date_Tag, c);
}
return String.format(Messages.Console_Data_Project_Tag, c, tag);
|