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.RPDownloadScrapeResult | create(DownloadScrapeResult _delegate)
RPDownloadScrapeResult res =(RPDownloadScrapeResult)_lookupLocal( _delegate );
if ( res == null ){
res = new RPDownloadScrapeResult( _delegate );
}
return( res );
|
public Download | getDownload()
notSupported();
return( null );
|
public long | getNextScrapeStartTime()
notSupported();
return(0);
|
public int | getNonSeedCount()
return( non_seed_count );
|
public int | getResponseType()
notSupported();
return( 0 );
|
public long | getScrapeStartTime()
notSupported();
return( 0 );
|
public int | getSeedCount()
return( seed_count );
|
public java.lang.String | getStatus()
notSupported();
return( null );
|
public java.net.URL | getURL()
notSupported();
return( null );
|
public void | setNextScrapeStartTime(long nextScrapeStartTime)
notSupported();
|