@Override
public Shape getShape() {
SVGLength width =(SVGLength) attributes.get("width");
SVGLength height =(SVGLength)attributes.get("height");
SVGCoordinate x =(SVGCoordinate)attributes.get("x");
SVGCoordinate y =(SVGCoordinate)attributes.get("y");
SVGLength rx =(SVGLength)attributes.get("rx");
SVGLength ry =(SVGLength)attributes.get("ry");
return new RoundRectangle2D.Double(x.getValue(), y.getValue(), width.getValue(), height.getValue(),rx.getValue(),ry.getValue());
}