1 2 package org.w3c.dom.svg; 3 4 import org.w3c.dom.DOMException ; 5 import org.w3c.dom.events.EventTarget ; 6 import org.w3c.dom.smil.ElementTimeControl; 7 8 public interface SVGAnimationElement extends 9 SVGElement, 10 SVGTests, 11 SVGExternalResourcesRequired, 12 ElementTimeControl, 13 EventTarget { 14 public SVGElement getTargetElement( ); 15 16 public float getStartTime ( ); 17 public float getCurrentTime ( ); 18 public float getSimpleDuration ( ) 19 throws DOMException ; 20 } 21 | Popular Tags |