📄 downloadmanagerfactory.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: DownloadManagerFactory.java
package org.gudy.azureus2.core3.download;
import java.util.List;
import org.gudy.azureus2.core3.download.impl.DownloadManagerImpl;
import org.gudy.azureus2.core3.global.GlobalManager;
// Referenced classes of package org.gudy.azureus2.core3.download:
// DownloadManagerInitialisationAdapter, DownloadManager
public class DownloadManagerFactory
{
public DownloadManagerFactory()
{
}
public static DownloadManager create(GlobalManager gm, byte torrent_hash[], String torrentFileName, String savePath, String saveFile, int initialState, boolean persistent, boolean for_seeding,
List file_priorities, DownloadManagerInitialisationAdapter adapter)
{
return new DownloadManagerImpl(gm, torrent_hash, torrentFileName, savePath, saveFile, initialState, persistent, false, for_seeding, false, file_priorities, adapter);
}
public static DownloadManager create(GlobalManager gm, byte torrent_hash[], String torrentFileName, String torrent_save_dir, String torrent_save_file, int initialState, boolean persistent, boolean recovered,
boolean has_ever_been_started, List file_priorities)
{
return new DownloadManagerImpl(gm, torrent_hash, torrentFileName, torrent_save_dir, torrent_save_file, initialState, persistent, recovered, false, has_ever_been_started, file_priorities, null);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -