1 package org.w3c.dom.smil; 2 3 import org.w3c.dom.DOMException ; 4 5 public interface ElementTimeControl { 6 public boolean beginElement() 7 throws DOMException ; 8 9 public boolean beginElementAt(float offset) 10 throws DOMException ; 11 12 public boolean endElement() 13 throws DOMException ; 14 15 public boolean endElementAt(float offset) 16 throws DOMException ; 17 18 } 19 | Popular Tags |