Class ToolTipUtils


  • public class ToolTipUtils
    extends java.lang.Object
    A utility class that creates tool tip text for given data types.
    Since:
    Tracker Id 616
    • Field Summary

      Fields 
      ChangeModifier and Type Field Description
      NEWstatic int LINE_LENGTH  
    • Method Summary

      All Methods Static Methods Concrete Methods 
      ChangeModifier and Type Method Description
      NEWstatic java.lang.String getFullToolTipText​(DataType dataType)
      Examines the give dataType and creates a tool tip for it, depending upon its actual class type.
      static HTMLDataTypeRepresentation getHTMLRepresentation​(DataType dataType)
      Return dataType details as HTML.
      static java.lang.String getToolTipText​(DataType dataType)
      Examines the give dataType and creates a tool tip for it, depending upon its actual class type.
      static java.lang.String getToolTipText​(Function function, boolean includeSymbolDetails)
      Return an HTML formatted rendering of a function
      static java.lang.String getToolTipText​(ExternalLocation extLoc, boolean includeSymbolDetails)
      Return an HTML formatted rendering of an external location/function.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

Method Detail

  • getFullToolTipText NEW

    public static java.lang.String getFullToolTipText​(DataType dataType)
    Examines the give dataType and creates a tool tip for it, depending upon its actual class type.

    Note: the text returned here will not be truncated. This can result in tool tip windows that are too large to fit in the screen. For truncated tool tip text, use getToolTipText(DataType).

    Parameters:
    dataType - The data type from which a tool tip will be created.
    Returns:
    tool tip text for the given data type.