link start!
This commit is contained in:
@@ -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);
|
||||
}
|
||||
Reference in New Issue
Block a user