summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/w3c/dom/smil/ElementSyncBehavior.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/w3c/dom/smil/ElementSyncBehavior.java')
-rw-r--r--src/main/java/org/w3c/dom/smil/ElementSyncBehavior.java49
1 files changed, 49 insertions, 0 deletions
diff --git a/src/main/java/org/w3c/dom/smil/ElementSyncBehavior.java b/src/main/java/org/w3c/dom/smil/ElementSyncBehavior.java
new file mode 100644
index 0000000..e75fecc
--- /dev/null
+++ b/src/main/java/org/w3c/dom/smil/ElementSyncBehavior.java
@@ -0,0 +1,49 @@
+/*
+ * Copyright (c) 2000 World Wide Web Consortium,
+ * (Massachusetts Institute of Technology, Institut National de
+ * Recherche en Informatique et en Automatique, Keio University). All
+ * Rights Reserved. This program is distributed under the W3C's Software
+ * Intellectual Property License. This program is distributed in the
+ * hope that it will be useful, but WITHOUT ANY WARRANTY; without even
+ * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
+ * PURPOSE. See W3C License http://www.w3.org/Consortium/Legal/ for more
+ * details.
+ */
+
+package org.w3c.dom.smil;
+
+/**
+ * The synchronization behavior extension.
+ */
+public interface ElementSyncBehavior {
+ /**
+ * The runtime synchronization behavior for an element.
+ */
+ public String getSyncBehavior();
+
+ /**
+ * The sync tolerance for the associated element. It has an effect only if
+ * the element has <code>syncBehavior="locked"</code> .
+ */
+ public float getSyncTolerance();
+
+ /**
+ * Defines the default value for the runtime synchronization behavior for
+ * an element, and all descendents.
+ */
+ public String getDefaultSyncBehavior();
+
+ /**
+ * Defines the default value for the sync tolerance for an element, and
+ * all descendents.
+ */
+ public float getDefaultSyncTolerance();
+
+ /**
+ * If set to true, forces the time container playback to sync to this
+ * element.
+ */
+ public boolean getSyncMaster();
+
+}
+