Record Class StyledTextRenderer.LineDrawInfo

java.lang.Object
java.lang.Record
org.eclipse.swt.custom.StyledTextRenderer.LineDrawInfo
Enclosing class:
StyledTextRenderer

private static record StyledTextRenderer.LineDrawInfo(int index, TextLayout layout, String text, int offset, int height) extends Record
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    private final int
    The field for the height record component.
    private final int
    The field for the index record component.
    private final TextLayout
    The field for the layout record component.
    private final int
    The field for the offset record component.
    private final String
    The field for the text record component.
  • Constructor Summary

    Constructors
    Modifier
    Constructor
    Description
    private
    LineDrawInfo(int index, TextLayout layout, String text, int offset, int height)
    Creates an instance of a LineDrawInfo record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    final boolean
    Indicates whether some other object is "equal to" this one.
    final int
    Returns a hash code value for this object.
    int
    Returns the value of the height record component.
    int
    Returns the value of the index record component.
    Returns the value of the layout record component.
    int
    Returns the value of the offset record component.
    Returns the value of the text record component.
    final String
    Returns a string representation of this record class.

    Methods inherited from class Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Field Details

    • index

      private final int index
      The field for the index record component.
    • layout

      private final TextLayout layout
      The field for the layout record component.
    • text

      private final String text
      The field for the text record component.
    • offset

      private final int offset
      The field for the offset record component.
    • height

      private final int height
      The field for the height record component.
  • Constructor Details

    • LineDrawInfo

      private LineDrawInfo(int index, TextLayout layout, String text, int offset, int height)
      Creates an instance of a LineDrawInfo record class.
      Parameters:
      index - the value for the index record component
      layout - the value for the layout record component
      text - the value for the text record component
      offset - the value for the offset record component
      height - the value for the height record component
  • Method Details

    • toString

      public final String toString()
      Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • hashCode

      public final int hashCode()
      Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared with Objects::equals(Object,Object); primitive components are compared with the compare method from their corresponding wrapper classes.
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • index

      public int index()
      Returns the value of the index record component.
      Returns:
      the value of the index record component
    • layout

      public TextLayout layout()
      Returns the value of the layout record component.
      Returns:
      the value of the layout record component
    • text

      public String text()
      Returns the value of the text record component.
      Returns:
      the value of the text record component
    • offset

      public int offset()
      Returns the value of the offset record component.
      Returns:
      the value of the offset record component
    • height

      public int height()
      Returns the value of the height record component.
      Returns:
      the value of the height record component