java.lang.Object
com.inductiveautomation.ignition.client.util.gui.tablelayout.TableLayout.Entry
All Implemented Interfaces:
Cloneable
Enclosing class:
TableLayout

public static class TableLayout.Entry extends Object implements Cloneable
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    int[]
    Horizontal and vertical alignment
    Component bound by the constraints
    int[]
    Cell in which the upper-left corner of the component lies
    int[]
    Cell in which the lower-right corner of the component lies
  • Constructor Summary

    Constructors
    Constructor
    Description
    Entry(Component component, TableLayoutConstraints constraint)
    Constructs an Entry that binds a component to a set of constraints.
  • Method Summary

    Modifier and Type
    Method
    Description
    Copies this Entry.
    Gets the string representation of this Entry.

    Methods inherited from class java.lang.Object

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

    • component

      public Component component
      Component bound by the constraints
    • cr1

      public int[] cr1
      Cell in which the upper-left corner of the component lies
    • cr2

      public int[] cr2
      Cell in which the lower-right corner of the component lies
    • alignment

      public int[] alignment
      Horizontal and vertical alignment
  • Constructor Details

    • Entry

      public Entry(Component component, TableLayoutConstraints constraint)
      Constructs an Entry that binds a component to a set of constraints.
      Parameters:
      component - component being bound
      constraint - constraints being applied
  • Method Details