• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

Java Time类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中org.w3c.dom.smil.Time的典型用法代码示例。如果您正苦于以下问题:Java Time类的具体用法?Java Time怎么用?Java Time使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



Time类属于org.w3c.dom.smil包,在下文中一共展示了Time类的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: getImplicitDuration

import org.w3c.dom.smil.Time; //导入依赖的package包/类
public float getImplicitDuration() {
    float dur = -1.0F;
    if (ENDSYNC_LAST.equals(getEndSync())) {
        NodeList children = getTimeChildren();
        for (int i = 0; i < children.getLength(); ++i) {
            ElementTime child = (ElementTime) children.item(i);
            TimeList endTimeList = child.getEnd();
            for (int j = 0; j < endTimeList.getLength(); ++j) {
                Time endTime = endTimeList.item(j);
                if (endTime.getTimeType() == Time.SMIL_TIME_INDEFINITE) {
                    // Return "indefinite" here.
                    return -1.0F;
                }
                if (endTime.getResolved()) {
                    float end = (float)endTime.getResolvedOffset();
                    dur = (end > dur) ? end : dur;
                }
            }
        }
    } // Other endsync types are not supported now.

    return dur;
}
 
开发者ID:XecureIT,项目名称:PeSanKita-android,代码行数:24,代码来源:ElementParallelTimeContainerImpl.java


示例2: item

import org.w3c.dom.smil.Time; //导入依赖的package包/类
public Time item(int index) {
    Time time = null;
    try {
        time = mTimes.get(index);
    } catch (IndexOutOfBoundsException e) {
        // Do nothing and return null
    }
    return time;
}
 
开发者ID:XecureIT,项目名称:PeSanKita-android,代码行数:10,代码来源:TimeListImpl.java


示例3: getBegin

import org.w3c.dom.smil.Time; //导入依赖的package包/类
public TimeList getBegin() {
    String[] beginTimeStringList = mSmilElement.getAttribute("begin").split(";");

    // TODO: Check other constraints on parsed values, e.g., "single, non-negative offset values
    ArrayList<Time> beginTimeList = new ArrayList<Time>();
    // Initialize Time instances and add them to Vector
    for (int i = 0; i < beginTimeStringList.length; i++) {
        try {
            beginTimeList.add(new TimeImpl(beginTimeStringList[i], getBeginConstraints()));
        } catch (IllegalArgumentException e) {
            // Ignore badly formatted times
        }
    }
    if (beginTimeList.size() == 0) {
        /*
         * What is the right default value?
         *
         * In MMS SMIL, this method may be called either on an instance of:
         *
         * 1 - ElementSequentialTimeContainer (The SMILDocument)
         * 2 - ElementParallelTimeContainer (A Time-Child of the SMILDocument, which is a seq)
         * 3 - ElementTime (A SMILMediaElement).
         *
         * 1 - In the first case, the default start time is obviously 0.
         * 2 - In the second case, the specifications mentions that
         *      "For children of a sequence, the only legal value for begin is
         *      a (single) non-negative offset value. The default begin value is 0."
         * 3 - In the third case, the specification mentions that
         *      "The default value of begin for children of a par is 0."
         *
         * In short, if no value is specified, the default is always 0.
         */

        beginTimeList.add(new TimeImpl("0", TimeImpl.ALLOW_ALL));
    }
    return new TimeListImpl(beginTimeList);
}
 
开发者ID:XecureIT,项目名称:PeSanKita-android,代码行数:38,代码来源:ElementTimeImpl.java


示例4: getEnd

import org.w3c.dom.smil.Time; //导入依赖的package包/类
public TimeList getEnd() {
    ArrayList<Time> endTimeList = new ArrayList<Time>();

    String[] endTimeStringList = mSmilElement.getAttribute("end").split(";");
    int len = endTimeStringList.length;
    if (!((len == 1) && (endTimeStringList[0].length() == 0))) {  // Ensure the end field is set.
        // Initialize Time instances and add them to Vector
        for (int i = 0; i < len; i++) {
            try {
                endTimeList.add(new TimeImpl(endTimeStringList[i],
                        getEndConstraints()));
            } catch (IllegalArgumentException e) {
                // Ignore badly formatted times
                Log.e(TAG, "Malformed time value.", e);
            }
        }
    }

    // "end" time is not specified
    if (endTimeList.size() == 0) {
        // Get duration
        float duration = getDur();

        if (duration < 0) {
            endTimeList.add(new TimeImpl("indefinite", getEndConstraints()));
        } else {
            // Get begin
            TimeList begin = getBegin();
            for (int i = 0; i < begin.getLength(); i++) {
                endTimeList.add(new TimeImpl(
                        // end = begin + dur
                        begin.item(i).getResolvedOffset() + duration + "s",
                        getEndConstraints()));
            }
        }
    }

    return new TimeListImpl(endTimeList);
}
 
开发者ID:XecureIT,项目名称:PeSanKita-android,代码行数:40,代码来源:ElementTimeImpl.java


示例5: beginAndEndAreZero

import org.w3c.dom.smil.Time; //导入依赖的package包/类
private boolean beginAndEndAreZero() {
    TimeList begin = getBegin();
    TimeList end = getEnd();
    if (begin.getLength() == 1 && end.getLength() == 1) {
        Time beginTime = begin.item(0);
        Time endTime = end.item(0);
        return beginTime.getOffset() == 0. && endTime.getOffset() == 0.;
    }
    return false;
}
 
开发者ID:XecureIT,项目名称:PeSanKita-android,代码行数:11,代码来源:ElementTimeImpl.java


示例6: getBegin

import org.w3c.dom.smil.Time; //导入依赖的package包/类
@Override
public TimeList getBegin() {
    /*
     * For children of a sequence, the only legal value for begin is
     * a (single) non-negative offset value.
     */
    TimeList beginTimeList = super.getBegin();
    if (beginTimeList.getLength() > 1) {
        ArrayList<Time> singleTimeContainer = new ArrayList<Time>();
        singleTimeContainer.add(beginTimeList.item(0));
        beginTimeList = new TimeListImpl(singleTimeContainer);
    }
    return beginTimeList;
}
 
开发者ID:XecureIT,项目名称:PeSanKita-android,代码行数:15,代码来源:SmilParElementImpl.java


示例7: getBegin

import org.w3c.dom.smil.Time; //导入依赖的package包/类
public TimeList getBegin() {
    String[] beginTimeStringList = mSmilElement.getAttribute("begin").split(";");

    // TODO: Check other constraints on parsed values, e.g., "single, non-negative offset values
    ArrayList<Time> beginTimeList = new ArrayList<>();
    // Initialize Time instances and add them to Vector
    for (String aBeginTimeStringList : beginTimeStringList) {
        try {
            beginTimeList.add(new TimeImpl(aBeginTimeStringList, getBeginConstraints()));
        } catch (IllegalArgumentException e) {
            // Ignore badly formatted times
        }
    }
    if (beginTimeList.isEmpty()) {
        /*
         * What is the right default value?
         *
         * In MMS SMIL, this method may be called either on an instance of:
         *
         * 1 - ElementSequentialTimeContainer (The SMILDocument)
         * 2 - ElementParallelTimeContainer (A Time-Child of the SMILDocument, which is a seq)
         * 3 - ElementTime (A SMILMediaElement).
         *
         * 1 - In the first case, the default start time is obviously 0.
         * 2 - In the second case, the specifications mentions that
         *      "For children of a sequence, the only legal value for begin is
         *      a (single) non-negative offset value. The default begin value is 0."
         * 3 - In the third case, the specification mentions that
         *      "The default value of begin for children of a par is 0."
         *
         * In short, if no value is specified, the default is always 0.
         */

        beginTimeList.add(new TimeImpl("0", TimeImpl.ALLOW_ALL));
    }
    return new TimeListImpl(beginTimeList);
}
 
开发者ID:moezbhatti,项目名称:qksms,代码行数:38,代码来源:ElementTimeImpl.java


示例8: getEnd

import org.w3c.dom.smil.Time; //导入依赖的package包/类
public TimeList getEnd() {
    ArrayList<Time> endTimeList = new ArrayList<>();

    String[] endTimeStringList = mSmilElement.getAttribute("end").split(";");
    int len = endTimeStringList.length;
    if (!((len == 1) && (endTimeStringList[0].length() == 0))) {  // Ensure the end field is set.
        // Initialize Time instances and add them to Vector
        for (String anEndTimeStringList : endTimeStringList) {
            try {
                endTimeList.add(new TimeImpl(anEndTimeStringList,
                        getEndConstraints()));
            } catch (IllegalArgumentException e) {
                // Ignore badly formatted times
                Log.e(TAG, "Malformed time value.", e);
            }
        }
    }

    // "end" time is not specified
    if (endTimeList.isEmpty()) {
        // Get duration
        float duration = getDur();

        if (duration < 0) {
            endTimeList.add(new TimeImpl("indefinite", getEndConstraints()));
        } else {
            // Get begin
            TimeList begin = getBegin();
            for (int i = 0; i < begin.getLength(); i++) {
                endTimeList.add(new TimeImpl(
                        // end = begin + dur
                        begin.item(i).getResolvedOffset() + duration + "s",
                        getEndConstraints()));
            }
        }
    }

    return new TimeListImpl(endTimeList);
}
 
开发者ID:moezbhatti,项目名称:qksms,代码行数:40,代码来源:ElementTimeImpl.java


示例9: getBegin

import org.w3c.dom.smil.Time; //导入依赖的package包/类
@Override
public TimeList getBegin() {
    /*
     * For children of a sequence, the only legal value for begin is
     * a (single) non-negative offset value.
     */
    TimeList beginTimeList = super.getBegin();
    if (beginTimeList.getLength() > 1) {
        ArrayList<Time> singleTimeContainer = new ArrayList<>();
        singleTimeContainer.add(beginTimeList.item(0));
        beginTimeList = new TimeListImpl(singleTimeContainer);
    }
    return beginTimeList;
}
 
开发者ID:moezbhatti,项目名称:qksms,代码行数:15,代码来源:SmilParElementImpl.java



注:本文中的org.w3c.dom.smil.Time类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java CommitComment类代码示例发布时间:2022-05-23
下一篇:
Java UserInfoRequest类代码示例发布时间:2022-05-23
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap