⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 timesource.java

📁 FMJ(freedom media for java)是java视频开发的新选择
💻 JAVA
字号:
package net.sf.fmj.ejmf.toolkit.util; /** * Implemented by classes that will provide a time value.  * * From the book: Essential JMF, Gordon, Talley (ISBN 0130801046).  Used with permission. * * see		   ejmf.toolkit.SourcedTime * @version        1.0 * @author         Rob Gordon & Steve Talley */public interface TimeSource {    /**      * Useful values for return by an implementation of     * getConversionDivisor.     *      */    final public static long NANOS_PER_SEC = 1000000000;    final public static long MICROS_PER_SEC = 1000000;    final public static long MILLIS_PER_SEC = 1000;    /**       *  Return time in source units     */    public long getTime();    /**      * Return a number used to divide source units to convert to     * seconds.     */    public long getConversionDivisor();}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -