summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/w3c/dom/svg/SVGNumber.java
blob: f4ee8014be6016c75eecf068f917944732214e1c (plain) (blame)
1
2
3
4
5
6
7
8
9
10

package org.w3c.dom.svg;

import org.w3c.dom.DOMException;

public interface SVGNumber {
  public float getValue( );
  public void           setValue( float value )
                       throws DOMException;
}