FileDocCategorySizeDatePackage
RPDownloadScrapeResult.javaAPI DocAzureus 3.0.3.42872Wed Feb 23 03:48:14 GMT 2005org.gudy.azureus2.pluginsimpl.remote.download

RPDownloadScrapeResult

public class RPDownloadScrapeResult extends RPObject implements DownloadScrapeResult
author
parg

Fields Summary
protected transient DownloadScrapeResult
delegate
public int
seed_count
public int
non_seed_count
Constructors Summary
protected RPDownloadScrapeResult(DownloadScrapeResult _delegate)

		super( _delegate );
	
Methods Summary
public RPReply_process(RPRequest request)

		String	method = request.getMethod();	
		
		throw( new RPException( "Unknown method: " + method ));
	
protected void_setDelegate(java.lang.Object _delegate)

		delegate = (DownloadScrapeResult)_delegate;
		
		seed_count		= delegate.getSeedCount();
		non_seed_count	= delegate.getNonSeedCount();	
	
public java.lang.Object_setLocal()

		return( _fixupLocal());
	
public static org.gudy.azureus2.pluginsimpl.remote.download.RPDownloadScrapeResultcreate(DownloadScrapeResult _delegate)

		RPDownloadScrapeResult	res =(RPDownloadScrapeResult)_lookupLocal( _delegate );
		
		if ( res == null ){
			
			res = new RPDownloadScrapeResult( _delegate );
		}
		
		return( res );
	
public DownloadgetDownload()

		notSupported();

		return( null );
	
public longgetNextScrapeStartTime()

		notSupported();
		
		return(0);
	
public intgetNonSeedCount()

		return( non_seed_count );
	
public intgetResponseType()

		notSupported();

		return( 0 );
	
public longgetScrapeStartTime()

		notSupported();

		return( 0 );
	
public intgetSeedCount()

		return( seed_count );
	
public java.lang.StringgetStatus()

		notSupported();
		
		return( null );
	
public java.net.URLgetURL()

		notSupported();
		
		return( null );
	
public voidsetNextScrapeStartTime(long nextScrapeStartTime)

		notSupported();