else {
String tspiNamespace = getDDMSVersion().getTspiNamespace();
_tspiShapes = new ArrayList<ITspiShape>();
Elements circles = element.getChildElements(Circle.getName(getDDMSVersion()), tspiNamespace);
for (int i = 0; i < circles.size(); i++) {
_tspiShapes.add(new Circle(circles.get(i)));
}
Elements ellipses = element.getChildElements(Ellipse.getName(getDDMSVersion()), tspiNamespace);
for (int i = 0; i < ellipses.size(); i++) {
_tspiShapes.add(new Ellipse(ellipses.get(i)));
}