Uses of Class
adams.core.tags.TagInfo
-
Packages that use TagInfo Package Description adams.core.tags adams.gui.core adams.gui.goe -
-
Uses of TagInfo in adams.core.tags
Fields in adams.core.tags with type parameters of type TagInfo Modifier and Type Field Description protected static Map<Class,Set<TagInfo>>
TagProcessorHelper. m_ApplicableTagInfoCache
for caching the tag info per applicable.protected static Map<Class,Set<TagInfo>>
TagProcessorHelper. m_SupportedTagInfoCache
for caching the tag info per tag processor.protected static Map<String,TagInfo>
TagProcessorHelper. m_TagInfos
the lookup by name.Methods in adams.core.tags that return TagInfo Modifier and Type Method Description static TagInfo
TagProcessorHelper. getTagInfo(String name)
Returns the tag info for the tag's name.Methods in adams.core.tags that return types with arguments of type TagInfo Modifier and Type Method Description static List<TagInfo>
TagProcessorHelper. getAllTags()
Returns a list of all possible tags.static List<TagInfo>
TagProcessorHelper. getApplicableTags(Class cls)
Returns all the tags that can be applied to the specified class.Set<TagInfo>
TagProcessor. getSupportedTags()
Returns the tags that are supported by this class, including an explanation of what they do.static List<TagInfo>
TagProcessorHelper. getSupportedTags(Class cls)
Returns all the tags that can are supported by the specified class.Methods in adams.core.tags with parameters of type TagInfo Modifier and Type Method Description int
TagInfo. compareTo(TagInfo o)
Simply compares the names of the tags. -
Uses of TagInfo in adams.gui.core
Fields in adams.gui.core with type parameters of type TagInfo Modifier and Type Field Description protected List<TagInfo>
TagInfoTableModel. m_Infos
the underlying tag infos.Methods in adams.gui.core that return TagInfo Modifier and Type Method Description TagInfo
TagInfoTableModel. get(int rowIndex)
Returns the tag info at the specified location.TagInfo
TagInfoTableModel. remove(int rowIndex)
Removes the tag info at the specified index.TagInfo[]
TagInfoTableModel. toArray()
Returns the underlying tags as array.Methods in adams.gui.core with parameters of type TagInfo Modifier and Type Method Description void
TagInfoTableModel. add(TagInfo info)
Adds the tag info.void
TagInfoTableModel. addAll(TagInfo[] infos)
Adds all the tag infos.void
TagInfoTableModel. set(int rowIndex, TagInfo info)
Updates the tag info.Method parameters in adams.gui.core with type arguments of type TagInfo Modifier and Type Method Description void
TagInfoTableModel. addAll(List<TagInfo> infos)
Adds all the tag infos.Constructors in adams.gui.core with parameters of type TagInfo Constructor Description TagInfoTableModel(TagInfo[] infos)
Initializes the model with the provided tag infos.Constructor parameters in adams.gui.core with type arguments of type TagInfo Constructor Description TagInfoTableModel(List<TagInfo> infos)
Initializes the model with the provided tag infos. -
Uses of TagInfo in adams.gui.goe
Methods in adams.gui.goe that return types with arguments of type TagInfo Modifier and Type Method Description protected List<TagInfo>
TagArrayEditor. determineTagInfos()
Determines the tag infos to choose from.
-