javauis/m2g_qt/javasrc/org/w3c/dom/svg/SVGAnimationElement.java
changeset 80 d6dafc5d983f
parent 56 abc41079b313
equal deleted inserted replaced
78:71ad690e91f5 80:d6dafc5d983f
       
     1 /*
       
     2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:
       
    15 *
       
    16 */
       
    17 package org.w3c.dom.svg;
       
    18 
       
    19 
       
    20 /**
       
    21  * This interface represents an Animation element, which contains methods to control the timing of
       
    22  * animations.
       
    23  */
       
    24 public interface SVGAnimationElement extends SVGElement
       
    25 {
       
    26 
       
    27     /**
       
    28      * Creates a begin instance time for the current time plus or minus the passed offset.
       
    29      * The new instance time is added to the <a href="http://www.w3.org/TR/2001/REC-smil20-20010807/smil20.html#smil-timing-Timing-BeginEnd-InstanceTimesLists">
       
    30      * begin instance times list</a>.
       
    31 
       
    32      *
       
    33      * @param offset The offset in seconds at which to begin the element.
       
    34      */
       
    35     public void beginElementAt(float offset);
       
    36 
       
    37     /**
       
    38      * Creates an end instance time for the current time plus or minus the passed offset.
       
    39      * The new instance time is added to the <a href="http://www.w3.org/TR/2001/REC-smil20-20010807/smil20.html#smil-timing-Timing-BeginEnd-InstanceTimesLists">
       
    40      * end instance times list</a>.
       
    41 
       
    42      *
       
    43      * @param offset The offset in seconds at which to end the element.
       
    44      */
       
    45     public void endElementAt(float offset);
       
    46 
       
    47 }