* @since 0.1
*/
public SVGPathSegList getSegList() {
final String path = getPathData();
final SVGPathSegList segList = new SVGPathSegList();
final SVGPathParser pp = new SVGPathParser(path, segList);
try{ pp.parse(); }
catch(final ParseException e) { throw new IllegalArgumentException(e + " But : \"" + path + "\" found."); } //$NON-NLS-1$ //$NON-NLS-2$
return segList;
}