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 = (DownloadAnnounceResult)_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.RPDownloadAnnounceResult | create(DownloadAnnounceResult _delegate)
RPDownloadAnnounceResult res =(RPDownloadAnnounceResult)_lookupLocal( _delegate );
if ( res == null ){
res = new RPDownloadAnnounceResult( _delegate );
}
return( res );
|
public Download | getDownload()
notSupported();
return( null );
|
public java.lang.String | getError()
notSupported();
return( null );
|
public java.util.Map | getExtensions()
notSupported();
return( null );
|
public int | getNonSeedCount()
return( non_seed_count );
|
public DownloadAnnounceResultPeer[] | getPeers()
notSupported();
return( null );
|
public int | getReportedPeerCount()
notSupported();
return( 0 );
|
public int | getResponseType()
notSupported();
return( 0 );
|
public int | getSeedCount()
return( seed_count );
|
public long | getTimeToWait()
notSupported();
return( 0 );
|
public java.net.URL | getURL()
notSupported();
return( null );
|