FileDocCategorySizeDatePackage
TOTorrentAnnounceURLSetImpl.javaAPI DocAzureus 3.0.3.41479Mon Jan 10 15:07:36 GMT 2005org.gudy.azureus2.core3.torrent.impl

TOTorrentAnnounceURLSetImpl

public class TOTorrentAnnounceURLSetImpl extends Object implements TOTorrentAnnounceURLSet

Fields Summary
private TOTorrentImpl
torrent
private URL[]
urls
Constructors Summary
protected TOTorrentAnnounceURLSetImpl(TOTorrentImpl _torrent, URL[] _urls)

		torrent	= _torrent;
	
		setAnnounceURLs( _urls );
	
Methods Summary
public java.net.URL[]getAnnounceURLs()

		return( urls );
	
public voidsetAnnounceURLs(java.net.URL[] _urls)

		urls	= new URL[_urls.length];
		
		for (int i=0;i<urls.length;i++){
		
			urls[i]	= torrent.anonymityTransform( _urls[i] );
		}