1 2 package org.w3c.dom.svg;3 4 import org.w3c.dom.DOMException ;5 6 public interface SVGPoint {7 public float getX( );8 public void setX( float x )9 throws DOMException ;10 public float getY( );11 public void setY( float y )12 throws DOMException ;13 14 public SVGPoint matrixTransform ( SVGMatrix matrix );15 }16