public void addXMLSection(String sectionTagName, String sectionData,
String namespace) throws PaintException {
// Ensure that the target is open
if (closed) {
throw new PaintException(
"Attempted to write to a closed PaintTarget.");
}
startTag(sectionTagName);
if (namespace != null) {