Class Grid.Cell

java.lang.Object
net.miginfocom.layout.Grid.Cell
Enclosing class:
Grid

private static class Grid.Cell extends Object
A simple representation of a cell in the grid. Contains a number of component wraps, if they span more than one cell.
  • Field Details

    • spanx

      private final int spanx
    • spany

      private final int spany
    • flowx

      private final boolean flowx
    • compWraps

      private final ArrayList<Grid.CompWrap> compWraps
    • hasTagged

      private boolean hasTagged
  • Constructor Details

    • Cell

      private Cell(Grid.CompWrap cw)
    • Cell

      private Cell(int spanx, int spany, boolean flowx)
    • Cell

      private Cell(Grid.CompWrap cw, int spanx, int spany, boolean flowx)