FileDocCategorySizeDatePackage
SMILAnimation.javaAPI DocAndroid 1.5 API4602Wed May 06 22:42:46 BST 2009org.w3c.dom.smil

SMILAnimation

public interface SMILAnimation implements ElementTimeControl, ElementTargetAttributes, SMILElement, ElementTime
This interface define the set of animation extensions for SMIL. The attributes will go in a XLink interface.

Fields Summary
public static final short
ADDITIVE_REPLACE
public static final short
ADDITIVE_SUM
public static final short
ACCUMULATE_NONE
public static final short
ACCUMULATE_SUM
public static final short
CALCMODE_DISCRETE
public static final short
CALCMODE_LINEAR
public static final short
CALCMODE_PACED
public static final short
CALCMODE_SPLINE
Constructors Summary
Methods Summary
public shortgetAccumulate()
A code representing the value of the accumulate attribute, as defined above. Default value is ACCUMULATE_NONE .

exception
DOMException NO_MODIFICATION_ALLOWED_ERR: Raised if this attribute is readonly.

public shortgetAdditive()
A code representing the value of the additive attribute, as defined above. Default value is ADDITIVE_REPLACE .

exception
DOMException NO_MODIFICATION_ALLOWED_ERR: Raised if this attribute is readonly.

public java.lang.StringgetBy()
A DOMString representing the value of the by attribute.

exception
DOMException NO_MODIFICATION_ALLOWED_ERR: Raised if this attribute is readonly.

public shortgetCalcMode()
A code representing the value of the calcMode attribute, as defined above.

exception
DOMException NO_MODIFICATION_ALLOWED_ERR: Raised if this attribute is readonly.

public java.lang.StringgetFrom()
A DOMString representing the value of the from attribute.

exception
DOMException NO_MODIFICATION_ALLOWED_ERR: Raised if this attribute is readonly.

public java.lang.StringgetKeySplines()
A DOMString representing the value of the keySplines attribute. Need an interface a point (x1,y1,x2,y2)

exception
DOMException NO_MODIFICATION_ALLOWED_ERR: Raised if this attribute is readonly.

public TimeListgetKeyTimes()
A list of the time value of the keyTimes attribute.

exception
DOMException NO_MODIFICATION_ALLOWED_ERR: Raised if this attribute is readonly.

public java.lang.StringgetTo()
A DOMString representing the value of the to attribute.

exception
DOMException NO_MODIFICATION_ALLOWED_ERR: Raised if this attribute is readonly.

public java.lang.StringgetValues()
A DOMString representing the value of the values attribute.

exception
DOMException NO_MODIFICATION_ALLOWED_ERR: Raised if this attribute is readonly.

public voidsetAccumulate(short accumulate)

public voidsetAdditive(short additive)

public voidsetBy(java.lang.String by)

public voidsetCalcMode(short calcMode)

public voidsetFrom(java.lang.String from)

public voidsetKeySplines(java.lang.String keySplines)

public voidsetKeyTimes(TimeList keyTimes)

public voidsetTo(java.lang.String to)

public voidsetValues(java.lang.String values)