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

package org.w3c.dom.svg;

import org.w3c.dom.DOMException;
public interface SVGAnimatedInteger {
  public int getBaseVal( );
  public void           setBaseVal( int baseVal )
                       throws DOMException;
  public int getAnimVal( );
}