Class AnimationSupport


  • public abstract class AnimationSupport
    extends java.lang.Object
    Class that provides utilities for animation support.
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static void fireTimeEvent​(org.w3c.dom.events.EventTarget target, java.lang.String eventType, java.util.Calendar time, int detail)
      Fires a TimeEvent on the given EventTarget.
      protected static org.w3c.dom.Element getElementById​(java.lang.String id, org.w3c.dom.Node n)
      Returns the element with the given ID, using the given node as the context for the lookup.
      static org.w3c.dom.events.EventTarget getEventTargetById​(java.lang.String id, org.w3c.dom.Node n)
      Returns the event target with the given ID, using the given node as the context for the lookup.
      static TimedElement getTimedElementById​(java.lang.String id, org.w3c.dom.Node n)
      Returns the timed element with the given ID, using the given node as the context for the lookup.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • AnimationSupport

        public AnimationSupport()
    • Method Detail

      • fireTimeEvent

        public static void fireTimeEvent​(org.w3c.dom.events.EventTarget target,
                                         java.lang.String eventType,
                                         java.util.Calendar time,
                                         int detail)
        Fires a TimeEvent on the given EventTarget.
      • getTimedElementById

        public static TimedElement getTimedElementById​(java.lang.String id,
                                                       org.w3c.dom.Node n)
        Returns the timed element with the given ID, using the given node as the context for the lookup.
      • getEventTargetById

        public static org.w3c.dom.events.EventTarget getEventTargetById​(java.lang.String id,
                                                                        org.w3c.dom.Node n)
        Returns the event target with the given ID, using the given node as the context for the lookup.
      • getElementById

        protected static org.w3c.dom.Element getElementById​(java.lang.String id,
                                                            org.w3c.dom.Node n)
        Returns the element with the given ID, using the given node as the context for the lookup.