OutputFormat format = new OutputFormat(runTimeDocument);
format.setIndenting(true);
format.setIndent(2);
format.setOmitXMLDeclaration(true);
XMLSerializer serializer = new XMLSerializer(out, format);
serializer.serialize(runTimeDocument);
Comment runTimeComment = jobDoc.createComment("This run_time is currently not supported:\n"+out.toString());
jobElement.appendChild(runTimeComment);
} else{
jobElement.appendChild(runTimeElement);
}