/**
* <b>DOM</b>: Implements {@link SVGPathElement#createSVGPathSegClosePath()}.
*/
public SVGPathSegClosePath createSVGPathSegClosePath() {
//throw new RuntimeException(" !!! createSVGPathSegClosePath()");
return new SVGPathSegClosePath(){
public short getPathSegType(){
return SVGPathSeg.PATHSEG_CLOSEPATH;
}
public String getPathSegTypeAsLetter(){
return PATHSEG_CLOSEPATH_LETTER;