link start!

This commit is contained in:
cherubin
2026-03-17 13:31:18 -07:00
commit 08abe87cfb
5910 changed files with 386288 additions and 0 deletions
@@ -0,0 +1,13 @@
package org.w3c.dom.smil;
import org.w3c.dom.DOMException;
public interface ElementTimeControl {
boolean beginElement() throws DOMException;
boolean beginElementAt(float f) throws DOMException;
boolean endElement() throws DOMException;
boolean endElementAt(float f) throws DOMException;
}
@@ -0,0 +1,12 @@
package org.w3c.dom.smil;
import org.w3c.dom.events.Event;
import org.w3c.dom.views.AbstractView;
public interface TimeEvent extends Event {
int getDetail();
AbstractView getView();
void initTimeEvent(String str, AbstractView abstractView, int i);
}