📄 platformmanagerfactory.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: PlatformManagerFactory.java
package org.gudy.azureus2.platform;
import org.gudy.azureus2.core3.util.AEMonitor;
import org.gudy.azureus2.core3.util.Constants;
import org.gudy.azureus2.core3.util.Debug;
import org.gudy.azureus2.platform.dummy.PlatformManagerImpl;
import org.gudy.azureus2.plugins.platform.PlatformManagerException;
// Referenced classes of package org.gudy.azureus2.platform:
// PlatformManager
public class PlatformManagerFactory
{
protected static PlatformManager platform_manager;
protected static AEMonitor class_mon = new AEMonitor("PlatformManagerFactory");
public PlatformManagerFactory()
{
}
public static PlatformManager getPlatformManager()
{
PlatformManager platformmanager;
class_mon.enter();
if (platform_manager == null)
try
{
if (getPlatformType() == 1)
platform_manager = org.gudy.azureus2.platform.win32.PlatformManagerImpl.getSingleton();
else
if (getPlatformType() == 3)
platform_manager = org.gudy.azureus2.platform.macosx.PlatformManagerImpl.getSingleton();
else
if (getPlatformType() == 4)
platform_manager = org.gudy.azureus2.platform.unix.PlatformManagerImpl.getSingleton();
}
catch (PlatformManagerException e) { }
catch (Throwable e)
{
Debug.printStackTrace(e);
}
if (platform_manager == null)
platform_manager = PlatformManagerImpl.getSingleton();
platformmanager = platform_manager;
class_mon.exit();
return platformmanager;
Exception exception;
exception;
class_mon.exit();
throw exception;
}
public static int getPlatformType()
{
if (Constants.isWindows)
return 1;
if (Constants.isOSX)
return 3;
return !Constants.isUnix ? 2 : 4;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -