Methods Summary |
---|
public org.gudy.azureus2.pluginsimpl.remote.RPReply | _process(org.gudy.azureus2.pluginsimpl.remote.RPRequest request)
String method = request.getMethod();
throw( new RPException( "Unknown method: " + method ));
|
protected void | _setDelegate(java.lang.Object _delegate)
delegate = (DiskManagerFileInfo)_delegate;
access_mode = delegate.getAccessMode();
downloaded = delegate.getDownloaded();
length = delegate.getLength();
file = delegate.getFile();
first_piece_number = delegate.getFirstPieceNumber();
num_pieces = delegate.getNumPieces();
is_priority = delegate.isPriority();
is_skipped = delegate.isSkipped();
|
public java.lang.Object | _setLocal()
return( _fixupLocal());
|
public static org.gudy.azureus2.pluginsimpl.remote.disk.RPDiskManagerFileInfo | create(org.gudy.azureus2.plugins.disk.DiskManagerFileInfo _delegate)
RPDiskManagerFileInfo res =(RPDiskManagerFileInfo)_lookupLocal( _delegate );
if ( res == null ){
res = new RPDiskManagerFileInfo( _delegate );
}
return( res );
|
public org.gudy.azureus2.plugins.disk.DiskManagerChannel | createChannel()
notSupported();
return( null );
|
public int | getAccessMode()
return( access_mode );
|
public org.gudy.azureus2.plugins.download.Download | getDownload()
notSupported();
return( null );
|
public long | getDownloaded()
return( downloaded );
|
public java.io.File | getFile()
return( file );
|
public int | getFirstPieceNumber()
return( first_piece_number );
|
public int | getIndex()
notSupported();
return( -1 );
|
public long | getLength()
return( length );
|
public java.io.File | getLink()
notSupported();
return( null );
|
public int | getNumPieces()
return( num_pieces );
|
public boolean | isDeleted()
notSupported();
return( false );
|
public boolean | isPriority()
return( is_priority );
|
public boolean | isSkipped()
return( is_skipped );
|
public void | setDeleted(boolean b)
notSupported();
|
public void | setLink(java.io.File link_destination)
notSupported();
|
public void | setPriority(boolean b)
notSupported();
|
public void | setSkipped(boolean b)
notSupported();
|