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

package org.w3c.dom.svg;

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