blob: 505caa40713eda4a5e218e584bf57d7c71cf0a4e [file] [log] [blame]
package org.w3c.dom.smil;
import org.w3c.dom.DOMException;
public interface ElementTimeControl {
public boolean beginElement()
throws DOMException;
public boolean beginElementAt(float offset)
throws DOMException;
public boolean endElement()
throws DOMException;
public boolean endElementAt(float offset)
throws DOMException;
}