📄 entryimpl.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: EntryImpl.java
package android.speech.recognition.impl;
import android.speech.recognition.NBestRecognitionResult;
// Referenced classes of package android.speech.recognition.impl:
// System
public class EntryImpl
implements android.speech.recognition.NBestRecognitionResult.Entry, Runnable
{
public EntryImpl(long nativeObject)
{
System.getInstance().register(this);
this.nativeObject = nativeObject;
}
public void run()
{
dispose();
}
public byte getConfidenceScore()
throws IllegalStateException
{
if(nativeObject == 0L)
throw new IllegalStateException("Object has been disposed");
else
return getConfidenceScoreProxy();
}
public String getLiteralMeaning()
throws IllegalStateException
{
if(nativeObject == 0L)
throw new IllegalStateException("Object has been disposed");
else
return getLiteralMeaningProxy();
}
public Object getSemanticMeaning()
throws IllegalStateException
{
if(nativeObject == 0L)
throw new IllegalStateException("Object has been disposed");
else
return getSemanticMeaningProxy();
}
private void dispose()
{
if(nativeObject != 0L)
{
deleteNativeObject();
nativeObject = 0L;
}
}
protected void finalize()
throws Throwable
{
dispose();
super.finalize();
}
private native void deleteNativeObject();
private native String getLiteralMeaningProxy();
private native Object getSemanticMeaningProxy();
private native byte getConfidenceScoreProxy();
private long nativeObject;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -