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

TimeList

public interface TimeList
The TimeList interface provides the abstraction of an ordered collection of times, without defining or constraining how this collection is implemented.

The items in the TimeList are accessible via an integral index, starting from 0.

Fields Summary
Constructors Summary
Methods Summary
public intgetLength()
The number of times in the list. The range of valid child time indices is 0 to length-1 inclusive.

public Timeitem(int index)
Returns the index th item in the collection. If index is greater than or equal to the number of times in the list, this returns null .

param
index Index into the collection.
return
The time at the index th position in the TimeList , or null if that is not a valid index.