FileDocCategorySizeDatePackage
ResourceDownloaderErrorImpl.javaAPI DocAzureus 3.0.3.42268Thu Feb 09 19:42:50 GMT 2006org.gudy.azureus2.pluginsimpl.local.utils.resourcedownloader

ResourceDownloaderErrorImpl

public class ResourceDownloaderErrorImpl extends ResourceDownloaderBaseImpl
author
parg

Fields Summary
protected ResourceDownloaderException
error
Constructors Summary
protected ResourceDownloaderErrorImpl(ResourceDownloaderBaseImpl _parent, ResourceDownloaderException _error)

		super( _parent );
		
		error	= _error;
	
Methods Summary
public voidaddListener(ResourceDownloaderListener l)

		super.addListener(l);
		
		informFailed( error );
	
public voidasyncDownload()

	
public voidcancel()

		setCancelled();
	
public java.io.InputStreamdownload()

		throw( error );
	
public ResourceDownloaderBaseImplgetClone(ResourceDownloaderBaseImpl parent)

		return( this );
	
public java.lang.StringgetName()

		return( "<error>:" + error.getMessage());
	
public longgetSize()

	
		throw( error );
	
public voidreportActivity(java.lang.String activity)

		informActivity( activity );
	
protected voidsetProperty(java.lang.String name, java.lang.Object value)

		setPropertySupport( name, value );
	
protected voidsetSize(long size)