Package com.biglybt.core.tag
Interface TagGroup
-
- All Known Implementing Classes:
TagTypeBase.TagGroupImpl
public interface TagGroup
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addListener(TagGroupListener l, boolean fire_for_existing)
java.lang.String
getName()
java.io.File
getRootMoveOnAssignLocation()
java.util.List<Tag>
getTags()
TagType
getTagType()
boolean
isExclusive()
void
removeListener(TagGroupListener l)
void
setExclusive(boolean b)
void
setRootMoveOnAssignLocation(java.io.File loc)
-
-
-
Method Detail
-
getName
java.lang.String getName()
-
isExclusive
boolean isExclusive()
-
setExclusive
void setExclusive(boolean b)
-
setRootMoveOnAssignLocation
void setRootMoveOnAssignLocation(java.io.File loc)
-
getRootMoveOnAssignLocation
java.io.File getRootMoveOnAssignLocation()
-
getTagType
TagType getTagType()
-
getTags
java.util.List<Tag> getTags()
-
addListener
void addListener(TagGroupListener l, boolean fire_for_existing)
-
removeListener
void removeListener(TagGroupListener l)
-
-