Runtime/Behavior Changes

Version 11.0 introduces a new inspection tool for users to view categories, tags, level, collaboration section, and other information associated with Snapper(s) and ItemTag(s). In order to generically obtain the tag text of an ItemTag (for identification purposes in the dialog), the following method has been added to ItemTag:

    /**
     * Tag Text.
     */
    extend public str tagText() {
	if (info and !info.tagText.emptyOrOnlyWhiteSpace) return info.tagText;
	return $noTagTextFoundFor # " " # toS;
    }

If you implement an ItemTag that does not store its text in its ItemTagInfo, it is imperative that you override tagText() to point towards either the actual displayed text or some other text that identifies the ItemTag.