Package com.biglybt.core.category
Interface CategoryListener
-
- All Known Implementing Classes:
CategoryManagerImpl
public interface CategoryListener
A listener informed of changes to Category
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
downloadManagerAdded(Category cat, DownloadManager manager)
A DownloadManager has been added to a Categoryvoid
downloadManagerRemoved(Category cat, DownloadManager removed)
A DownloadManager has been removed from a Category
-
-
-
Method Detail
-
downloadManagerAdded
void downloadManagerAdded(Category cat, DownloadManager manager)
A DownloadManager has been added to a Category- Parameters:
cat
- Category that the DownloadManager has been added tomanager
- DownloadManager that was added
-
downloadManagerRemoved
void downloadManagerRemoved(Category cat, DownloadManager removed)
A DownloadManager has been removed from a Category- Parameters:
cat
- Category that the DownloadManager was removed fromremoved
- The DownloadManager that was removed
-
-