public static double getDimension(DOMInput in, String attributeName) throws IOException { return getDimensionValue(in, in.getAttribute(attributeName, "0")); }
public static List<BezierPath> getPath(DOMInput in, String attributeName) throws IOException { return fromPathData(in.getAttribute(attributeName, "")); }
public static AffineTransform getTransform(DOMInput in, String attributeName) throws IOException { return getTransform(in.getAttribute(attributeName, "")); }