Package com.biglybt.core.tag
Class TaggableLifecycleAdapter
- java.lang.Object
-
- com.biglybt.core.tag.TaggableLifecycleAdapter
-
- All Implemented Interfaces:
TaggableLifecycleListener
public class TaggableLifecycleAdapter extends java.lang.Object implements TaggableLifecycleListener
-
-
Constructor Summary
Constructors Constructor Description TaggableLifecycleAdapter()
-
Method Summary
All Methods Instance Methods Concrete 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
public void initialised(java.util.List<Taggable> current_taggables)
- Specified by:
initialised
in interfaceTaggableLifecycleListener
-
taggableCreated
public void taggableCreated(Taggable taggable)
- Specified by:
taggableCreated
in interfaceTaggableLifecycleListener
-
taggableDestroyed
public void taggableDestroyed(Taggable taggable)
- Specified by:
taggableDestroyed
in interfaceTaggableLifecycleListener
-
taggableTagged
public void taggableTagged(TagType tag_type, Tag tag, Taggable taggable)
Description copied from interface:TaggableLifecycleListener
Currently only implemented for manual_download tag changes- Specified by:
taggableTagged
in interfaceTaggableLifecycleListener
-
taggableUntagged
public void taggableUntagged(TagType tag_type, Tag tag, Taggable taggable)
Description copied from interface:TaggableLifecycleListener
Currently only implemented for manual_download tag changes- Specified by:
taggableUntagged
in interfaceTaggableLifecycleListener
-
-