1 2 package org.w3c.dom.svg;3 4 import org.w3c.dom.DOMException ;5 6 public interface SVGNumber {7 public float getValue( );8 public void setValue( float value )9 throws DOMException ;10 }11