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

📄 nbestrecognitionresultimpl.java

📁 goolge phone 目前没有开放的android 平台的源码
💻 JAVA
字号:
// Decompiled by Jad v1.5.8e2. Copyright 2001 Pavel Kouznetsov.
// Jad home page: http://kpdus.tripod.com/jad.html
// Decompiler options: packimports(3) 
// Source File Name:   NBestRecognitionResultImpl.java

package android.speech.recognition.impl;

import android.speech.recognition.NBestRecognitionResult;
import android.speech.recognition.VoicetagItem;

// Referenced classes of package android.speech.recognition.impl:
//            EntryImpl, VoicetagItemImpl

public class NBestRecognitionResultImpl
    implements NBestRecognitionResult
{

    public NBestRecognitionResultImpl(long nativeObject)
    {
        this.nativeObject = nativeObject;
    }

    public int getSize()
    {
        return getSizeProxy();
    }

    public android.speech.recognition.NBestRecognitionResult.Entry getEntry(int index)
    {
        long nativeObject = getEntryProxy(index);
        if(nativeObject == 0L)
            return null;
        else
            return new EntryImpl(nativeObject);
    }

    public VoicetagItem createVoicetagItem()
    {
        return new VoicetagItemImpl(createVoicetagItemProxy());
    }

    private void dispose()
    {
        nativeObject = 0L;
    }

    protected void finalize()
        throws Throwable
    {
        dispose();
        super.finalize();
    }

    private native long createVoicetagItemProxy();

    private native long getEntryProxy(int i);

    private native int getSizeProxy();

    private long nativeObject;
}

⌨️ 快捷键说明

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