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

📄 player.java

📁 日本游戏
💻 JAVA
字号:
// Decompiled by Jad v1.5.7g. Copyright 2000 Pavel Kouznetsov.
// Jad home page: http://www.geocities.com/SiliconValley/Bridge/8617/jad.html
// Decompiler options: packimports(3) fieldsfirst ansi 
// Source File Name:   Player.java

package javax.microedition.media;


// Referenced classes of package javax.microedition.media:
//            Controllable, MediaException, TimeBase, PlayerListener

public interface Player
    extends Controllable
{

    public static final int UNREALIZED = 0;
    public static final int REALIZED = 0;
    public static final int PREFETCHED = 0;
    public static final int STARTED = 0;
    public static final int CLOSED = 0;
    public static final long TIME_UNKNOWN = 0L;

    public abstract void realize()
        throws MediaException;

    public abstract void prefetch()
        throws MediaException;

    public abstract void start()
        throws MediaException;

    public abstract void stop()
        throws MediaException;

    public abstract void deallocate();

    public abstract void close();

    public abstract void setTimeBase(TimeBase timebase)
        throws MediaException;

    public abstract TimeBase getTimeBase();

    public abstract long setMediaTime(long l)
        throws MediaException;

    public abstract long getMediaTime();

    public abstract int getState();

    public abstract long getDuration();

    public abstract String getContentType();

    public abstract void setLoopCount(int i);

    public abstract void addPlayerListener(PlayerListener playerlistener);

    public abstract void removePlayerListener(PlayerListener playerlistener);
}

⌨️ 快捷键说明

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