String text = _smallIconDescription.value();
Reader in = new StringReader(text);
// NOTE: Do we need a base here?
XmlDocument document = new XmlDocument((URL) null);
XmlReader reader = new XmlReader();
reader.parse(document, in);
XmlElement root = document.getRoot();
PaintedList paintedList = SVGParser.createPaintedList(root);
figure = new PaintedFigure(paintedList);
} catch (Exception ex) {