* which version of JSBML was used for this purpose.
*/
if ((programName != null) && (programName.length() > 0)) {
String date = String.format("%1$tY-%1$tm-%1$td %1$tR", Calendar.getInstance().getTime());
String msg = " Created by {0} version {1} on {2} with JSBML version {3}. ";
outputDocument.addComment(
MessageFormat.format(msg, programName, (programVersion != null)
&& (programVersion.length() > 0) ? programVersion
: "?", date, JSBML.getJSBMLDottedVersion()));
outputDocument.addCharacters("\n");
}