Class GridCellConstraint

java.lang.Object
ca.phon.ui.layout.GridCellConstraint

public class GridCellConstraint extends Object
(x,y) and w+h of a component using the GridCellLayout layout manager.
  • Field Details

    • x

      public int x
      x
    • y

      public int y
      y
    • w

      public int w
      w
    • h

      public int h
      h
  • Constructor Details

    • GridCellConstraint

      public GridCellConstraint(int x, int y)
    • GridCellConstraint

      public GridCellConstraint(int x, int y, int w)
    • GridCellConstraint

      public GridCellConstraint(int x, int y, int w, int h)
  • Method Details

    • xy

      public static GridCellConstraint xy(int x, int y)
    • xyw

      public static GridCellConstraint xyw(int x, int y, int w)
    • xywh

      public static GridCellConstraint xywh(int x, int y, int w, int h)
    • getX

      public int getX()
    • setX

      public void setX(int x)
    • getY

      public int getY()
    • setY

      public void setY(int y)
    • getW

      public int getW()
    • setW

      public void setW(int w)
    • getH

      public int getH()
    • setH

      public void setH(int h)