Package com.biglybt.core.tag
Interface TaggableLifecycleListener
-
- All Known Implementing Classes:
TaggableLifecycleAdapter
public interface TaggableLifecycleListener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
initialised(java.util.List<Taggable> current_taggables)
void
taggableCreated(Taggable taggable)
void
taggableDestroyed(Taggable taggable)
void
taggableTagged(TagType tag_type, Tag tag, Taggable taggable)
Currently only implemented for manual_download tag changesvoid
taggableUntagged(TagType tag_type, Tag tag, Taggable taggable)
Currently only implemented for manual_download tag changes
-
-
-
Method Detail
-
initialised
void initialised(java.util.List<Taggable> current_taggables)
-
taggableCreated
void taggableCreated(Taggable taggable)
-
taggableDestroyed
void taggableDestroyed(Taggable taggable)
-
taggableTagged
void taggableTagged(TagType tag_type, Tag tag, Taggable taggable)
Currently only implemented for manual_download tag changes- Parameters:
tag_type
-tag
-taggable
-
-
-