📄 nativeinvocationbridge.java
字号:
// Decompiled by Jad v1.5.8e2. Copyright 2001 Pavel Kouznetsov.
// Jad home page: http://kpdus.tripod.com/jad.html
// Decompiler options: packimports(3) fieldsfirst ansi space
// Source File Name: NativeInvocationBridge.java
package org.gudy.azureus2.platform.macosx;
import java.io.File;
import java.lang.reflect.Constructor;
import org.gudy.azureus2.core3.util.Debug;
public abstract class NativeInvocationBridge
{
private static class DummyBridge extends NativeInvocationBridge
{
public boolean isEnabled()
{
return false;
}
private DummyBridge()
{
}
}
private static NativeInvocationBridge instance;
protected NativeInvocationBridge()
{
}
protected static final NativeInvocationBridge sharedInstance()
{
return instance;
}
protected boolean performRecoverableFileDelete(File path)
{
return false;
}
protected boolean showInFinder(File path, String fb)
{
return false;
}
protected abstract boolean isEnabled();
protected void dispose()
{
}
static
{
try
{
Object newInstance = Class.forName("org.gudy.azureus2.platform.macosx.access.cocoa.CocoaJavaBridge").getConstructor(null).newInstance(null);
instance = (NativeInvocationBridge)newInstance;
}
catch (Exception e)
{
Debug.out(e);
instance = new DummyBridge();
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -