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

📄 rpdownloadscraperesult.java

📁 java 文件下载器。可自定义
💻 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:   RPDownloadScrapeResult.java

package org.gudy.azureus2.pluginsimpl.remote.download;

import java.net.URL;
import org.gudy.azureus2.plugins.download.Download;
import org.gudy.azureus2.plugins.download.DownloadScrapeResult;
import org.gudy.azureus2.pluginsimpl.remote.*;

public class RPDownloadScrapeResult extends RPObject
	implements DownloadScrapeResult
{

	protected transient DownloadScrapeResult delegate;
	public int seed_count;
	public int non_seed_count;

	public static RPDownloadScrapeResult create(DownloadScrapeResult _delegate)
	{
		RPDownloadScrapeResult res = (RPDownloadScrapeResult)_lookupLocal(_delegate);
		if (res == null)
			res = new RPDownloadScrapeResult(_delegate);
		return res;
	}

	protected RPDownloadScrapeResult(DownloadScrapeResult _delegate)
	{
		super(_delegate);
	}

	protected void _setDelegate(Object _delegate)
	{
		delegate = (DownloadScrapeResult)_delegate;
		seed_count = delegate.getSeedCount();
		non_seed_count = delegate.getNonSeedCount();
	}

	public Object _setLocal()
		throws RPException
	{
		return _fixupLocal();
	}

	public RPReply _process(RPRequest request)
	{
		String method = request.getMethod();
		throw new RPException((new StringBuilder()).append("Unknown method: ").append(method).toString());
	}

	public Download getDownload()
	{
		notSupported();
		return null;
	}

	public int getResponseType()
	{
		notSupported();
		return 0;
	}

	public int getSeedCount()
	{
		return seed_count;
	}

	public int getNonSeedCount()
	{
		return non_seed_count;
	}

	public long getScrapeStartTime()
	{
		notSupported();
		return 0L;
	}

	public void setNextScrapeStartTime(long nextScrapeStartTime)
	{
		notSupported();
	}

	public long getNextScrapeStartTime()
	{
		notSupported();
		return 0L;
	}

	public String getStatus()
	{
		notSupported();
		return null;
	}

	public URL getURL()
	{
		notSupported();
		return null;
	}
}

⌨️ 快捷键说明

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