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

SmilMediaElementImpl

public class SmilMediaElementImpl extends SmilElementImpl implements org.w3c.dom.smil.SMILMediaElement

Fields Summary
public static final String
SMIL_MEDIA_START_EVENT
public static final String
SMIL_MEDIA_END_EVENT
public static final String
SMIL_MEDIA_PAUSE_EVENT
public static final String
SMIL_MEDIA_SEEK_EVENT
private static final String
TAG
private static final boolean
DEBUG
private static final boolean
LOCAL_LOGV
org.w3c.dom.smil.ElementTime
mElementTime
Constructors Summary
SmilMediaElementImpl(SmilDocumentImpl owner, String tagName)


    /*
     * Internal Interface
     */

        
        super(owner, tagName);
    
Methods Summary
public booleanbeginElement()

        return mElementTime.beginElement();
    
public booleanendElement()

        return mElementTime.endElement();
    
public java.lang.StringgetAbstractAttr()

        return this.getAttribute("abstract");
    
public java.lang.StringgetAlt()

        return this.getAttribute("alt");
    
public java.lang.StringgetAuthor()

        return this.getAttribute("author");
    
public org.w3c.dom.smil.TimeListgetBegin()

        return mElementTime.getBegin();
    
public java.lang.StringgetClipBegin()

        return this.getAttribute("clipBegin");
    
public java.lang.StringgetClipEnd()

        return this.getAttribute("clipEnd");
    
public java.lang.StringgetCopyright()

        return this.getAttribute("copyright");
    
public floatgetDur()

        return mElementTime.getDur();
    
public org.w3c.dom.smil.TimeListgetEnd()

        return mElementTime.getEnd();
    
public shortgetFill()

        return mElementTime.getFill();
    
public shortgetFillDefault()

        return mElementTime.getFillDefault();
    
public java.lang.StringgetLongdesc()

        return this.getAttribute("longdesc");
    
public java.lang.StringgetPort()

        return this.getAttribute("port");
    
public java.lang.StringgetReadIndex()

        return this.getAttribute("readIndex");
    
public floatgetRepeatCount()

        return mElementTime.getRepeatCount();
    
public floatgetRepeatDur()

        return mElementTime.getRepeatDur();
    
public shortgetRestart()

        return mElementTime.getRestart();
    
public java.lang.StringgetRtpformat()

        return this.getAttribute("rtpformat");
    
public java.lang.StringgetSrc()

        return this.getAttribute("src");
    
public java.lang.StringgetStripRepeat()

        return this.getAttribute("stripRepeat");
    
public java.lang.StringgetTitle()

        return this.getAttribute("title");
    
public java.lang.StringgetTransport()

        return this.getAttribute("transport");
    
public java.lang.StringgetType()

        return this.getAttribute("type");
    
public voidpauseElement()

        mElementTime.pauseElement();
    
public voidresumeElement()

        mElementTime.resumeElement();
    
public voidseekElement(float seekTo)

        mElementTime.seekElement(seekTo);
    
public voidsetAbstractAttr(java.lang.String abstractAttr)

        this.setAttribute("abstract", abstractAttr);
    
public voidsetAlt(java.lang.String alt)

        this.setAttribute("alt", alt);
    
public voidsetAuthor(java.lang.String author)

        this.setAttribute("author", author);
    
public voidsetBegin(org.w3c.dom.smil.TimeList begin)

        mElementTime.setBegin(begin);
    
public voidsetClipBegin(java.lang.String clipBegin)

        this.setAttribute("clipBegin", clipBegin);
    
public voidsetClipEnd(java.lang.String clipEnd)

        this.setAttribute("clipEnd", clipEnd);
    
public voidsetCopyright(java.lang.String copyright)

        this.setAttribute("copyright", copyright);
    
public voidsetDur(float dur)

        mElementTime.setDur(dur);
    
public voidsetEnd(org.w3c.dom.smil.TimeList end)

        mElementTime.setEnd(end);
    
public voidsetFill(short fill)

        mElementTime.setFill(fill);
    
public voidsetFillDefault(short fillDefault)

        mElementTime.setFillDefault(fillDefault);
    
public voidsetLongdesc(java.lang.String longdesc)

        this.setAttribute("longdesc", longdesc);

    
public voidsetPort(java.lang.String port)

        this.setAttribute("port", port);
    
public voidsetReadIndex(java.lang.String readIndex)

        this.setAttribute("readIndex", readIndex);
    
public voidsetRepeatCount(float repeatCount)

        mElementTime.setRepeatCount(repeatCount);
    
public voidsetRepeatDur(float repeatDur)

        mElementTime.setRepeatDur(repeatDur);
    
public voidsetRestart(short restart)

        mElementTime.setRestart(restart);
    
public voidsetRtpformat(java.lang.String rtpformat)

        this.setAttribute("rtpformat", rtpformat);
    
public voidsetSrc(java.lang.String src)

        this.setAttribute("src", src);
    
public voidsetStripRepeat(java.lang.String stripRepeat)

        this.setAttribute("stripRepeat", stripRepeat);
    
public voidsetTitle(java.lang.String title)

        this.setAttribute("title", title);
    
public voidsetTransport(java.lang.String transport)

        this.setAttribute("transport", transport);
    
public voidsetType(java.lang.String type)

        this.setAttribute("type", type);