FileDocCategorySizeDatePackage
TimeListImpl.javaAPI DocAndroid 1.5 API1340Wed May 06 22:42:46 BST 2009com.android.mms.dom.smil

TimeListImpl

public class TimeListImpl extends Object implements org.w3c.dom.smil.TimeList

Fields Summary
private final ArrayList
mTimes
Constructors Summary
TimeListImpl(ArrayList times)

        mTimes = times;
    
Methods Summary
public intgetLength()

        return mTimes.size();
    
public org.w3c.dom.smil.Timeitem(int index)

        Time time = null;
        try {
            time = mTimes.get(index);
        } catch (IndexOutOfBoundsException e) {
            // Do nothing and return null
        }
        return time;