Uses of Interface
cz.vutbr.fit.layout.model.Tag
-
Packages that use Tag Package Description cz.vutbr.fit.layout.api cz.vutbr.fit.layout.impl cz.vutbr.fit.layout.model -
-
Uses of Tag in cz.vutbr.fit.layout.api
Methods in cz.vutbr.fit.layout.api that return types with arguments of type Tag Modifier and Type Method Description Set<Tag>TagResolver. getAreaTags(Area a)Assigns a set of tags to a given area based on its properties.Map<Tag,Tagger>TaggerConfig. getTaggers()Returns the complete mapping of tags to their source taggers.Methods in cz.vutbr.fit.layout.api with parameters of type Tag Modifier and Type Method Description TaggerTaggerConfig. getTaggerForTag(Tag tag)Finds a tagger for the given tag.booleanTagger. mayCoexistWith(Tag other)Check if the area tagged with this tag may be tagged with another tag.Method parameters in cz.vutbr.fit.layout.api with type arguments of type Tag Modifier and Type Method Description voidOutputDisplay. colorizeByTags(ContentRect rect, Set<Tag> s)Draws the colorized are bounds. -
Uses of Tag in cz.vutbr.fit.layout.impl
Classes in cz.vutbr.fit.layout.impl that implement Tag Modifier and Type Class Description classDefaultTagA default simple tag implementation.Methods in cz.vutbr.fit.layout.impl that return Tag Modifier and Type Method Description TagDefaultLogicalArea. getMainTag()TagDefaultArea. getMostSupportedTag()TagDefaultTextChunk. getMostSupportedTag()Methods in cz.vutbr.fit.layout.impl that return types with arguments of type Tag Modifier and Type Method Description Set<Tag>SimpleTagResolver. getAreaTags(Area a)Set<Tag>DefaultArea. getSupportedTags(float minSupport)Set<Tag>DefaultTextChunk. getSupportedTags(float minSupport)Map<Tag,Float>DefaultArea. getTags()Obtains the set of tags assigned to the area.Map<Tag,Float>DefaultTextChunk. getTags()Obtains the set of tags assigned to the area.Methods in cz.vutbr.fit.layout.impl with parameters of type Tag Modifier and Type Method Description voidDefaultArea. addTag(Tag tag, float support)voidDefaultTextChunk. addTag(Tag tag, float support)booleanDefaultArea. containsTag(Tag tag)Tests whether the area or any of its direct child areas have the given tag.floatDefaultArea. getTagSupport(Tag tag)floatDefaultTextChunk. getTagSupport(Tag tag)booleanDefaultArea. hasTag(Tag tag)booleanDefaultArea. hasTag(Tag tag, float minSupport)booleanDefaultTextChunk. hasTag(Tag tag)booleanDefaultTextChunk. hasTag(Tag tag, float minSupport)voidDefaultArea. removeTag(Tag tag)Removes the specific tagvoidDefaultTextChunk. removeTag(Tag tag)Removes the specific tagvoidDefaultLogicalArea. setMainTag(Tag mainTag)Method parameters in cz.vutbr.fit.layout.impl with type arguments of type Tag Modifier and Type Method Description voidDefaultArea. removeAllTags(Collection<Tag> c)Removes all tags that belong to the given collection.voidDefaultTextChunk. removeAllTags(Collection<Tag> c)Removes all tags that belong to the given collection. -
Uses of Tag in cz.vutbr.fit.layout.model
Methods in cz.vutbr.fit.layout.model that return Tag Modifier and Type Method Description TagLogicalArea. getMainTag()TagTaggable. getMostSupportedTag()Obtains the tag with the greatest support that is assigned to this area.Methods in cz.vutbr.fit.layout.model that return types with arguments of type Tag Modifier and Type Method Description Set<Tag>Taggable. getSupportedTags(float minSupport)Obtains all the tags with the support greater or equal to the specified value.Map<Tag,Float>Taggable. getTags()Obtains the list of tags assigned to this area and their support.Methods in cz.vutbr.fit.layout.model with parameters of type Tag Modifier and Type Method Description voidTaggable. addTag(Tag tag, float support)Adds a tag to this area.floatTaggable. getTagSupport(Tag tag)Obtains the support of the given tag assignmentbooleanTaggable. hasTag(Tag tag)Tests whether the area has this tag.booleanTaggable. hasTag(Tag tag, float minSupport)Tests whether the area has this tag with a support greater or equal to the specified value.voidTaggable. removeTag(Tag tag)Removes the given tag from the area.voidLogicalArea. setMainTag(Tag tag)
-