Uses of Class
net.miginfocom.layout.LC

Packages that use LC
Package
Description
 
 
  • Uses of LC in net.miginfocom.layout

    Methods in net.miginfocom.layout that return LC
    Modifier and Type
    Method
    Description
    final LC
    LC.align(String ax, String ay)
    Sets both the alignX and alignY as the same time.
    final LC
    LC.alignX(String align)
    Same functionality as setAlignX(ConstraintParser.parseUnitValueOrAlign(unitValue, true)) only this method returns this for chaining multiple calls.
    final LC
    LC.alignY(String align)
    Same functionality as setAlignY(ConstraintParser.parseUnitValueOrAlign(align, false)) only this method returns this for chaining multiple calls.
    final LC
    Same functionality as
    invalid @link
    {@link #setTopToBottom(boolean false)
    } only this method returns this for chaining multiple calls.
    final LC
    LC.debug(int repaintMillis)
    Same functionality as setDebugMillis(int repaintMillis) only this method returns this for chaining multiple calls.
    final LC
    LC.fill()
    Same functionality as
    invalid @link
    {@link #setFillX(boolean true)
    } and
    invalid @link
    {@link #setFillY(boolean true)
    } conmbined.T his method returns this for chaining multiple calls.
    final LC
    LC.fillX()
    Same functionality as
    invalid @link
    {@link #setFillX(boolean true)
    } only this method returns this for chaining multiple calls.
    final LC
    LC.fillY()
    Same functionality as
    invalid @link
    {@link #setFillY(boolean true)
    } only this method returns this for chaining multiple calls.
    final LC
    LC.flowX()
    Same functionality as
    invalid @link
    {@link #setFlowX(boolean true)
    } only this method returns this for chaining multiple calls.
    final LC
    LC.flowY()
    Same functionality as
    invalid @link
    {@link #setFlowX(boolean false)
    } only this method returns this for chaining multiple calls.
    final LC
    LC.gridGap(String gapx, String gapy)
    Sets both grid gaps at the same time. see gridGapX(String) and gridGapY(String).
    final LC
    LC.gridGapX(String boundsSize)
    Same functionality as setGridGapX(ConstraintParser.parseBoundSize(boundsSize, true, true)) only this method returns this for chaining multiple calls.
    final LC
    LC.gridGapY(String boundsSize)
    Same functionality as setGridGapY(ConstraintParser.parseBoundSize(boundsSize, true, false)) only this method returns this for chaining multiple calls.
    final LC
    LC.height(String height)
    The height for the container as a min and/or preferref and/or maximum height.
    final LC
    LC.hideMode(int mode)
    Same functionality as setHideMode(int mode) only this method returns this for chaining multiple calls.
    final LC
    LC.insets(String s)
    Same functionality as setInsets(ConstraintParser.parseInsets(s, true)).
    final LC
    LC.insets(String top, String left, String bottom, String right)
    Sets the different insets (expressed as a UnitValues, e.g. "10px" or "20mm") for the corresponding sides.
    final LC
    LC.insetsAll(String allSides)
    Sets the same inset (expressed as a UnitValue, e.g. "10px" or "20mm") all around.
    final LC
    LC.leftToRight(boolean b)
    Same functionality as setLeftToRight(Boolean) only this method returns this for chaining multiple calls.
    final LC
    LC.maxHeight(String height)
    The maximum height for the container.
    final LC
    LC.maxWidth(String width)
    The maximum width for the container.
    final LC
    LC.minHeight(String height)
    The minimum height for the container.
    final LC
    LC.minWidth(String width)
    The minimum width for the container.
    final LC
    LC.noCache()
    Same functionality as
    invalid @link
    {@link #setNoCache(boolean true)
    } only this method returns this for chaining multiple calls.
    final LC
    LC.noGrid()
    Same functionality as
    invalid @link
    {@link #setNoGrid(boolean true)
    } only this method returns this for chaining multiple calls.
    final LC
    Same functionality as
    invalid @link
    {@link #setVisualPadding(boolean false)
    } only this method returns this for chaining multiple calls.
    final LC
    LC.pack()
    Short for, and thus same as, .pack("pref", "pref").
    final LC
    LC.pack(String width, String height)
    Sets the pack width and height.
    final LC
    LC.packAlign(float alignX, float alignY)
    Sets the pack width and height alignment.
    static LC
    ConstraintParser.parseLayoutConstraint(String s)
    Parses the layout constraints and stores the parsed values in the transient (cache) member varables.
    final LC
    Same functionality as setLeftToRight(false) only this method returns this for chaining multiple calls.
    final LC
    Same functionality as
    invalid @link
    {@link #setTopToBottom(boolean true)
    } only this method returns this for chaining multiple calls.
    final LC
    LC.width(String width)
    The width for the container as a min and/or preferref and/or maximum width.
    final LC
    LC.wrap()
    Sets a wrap after the number of columns/rows that is defined in the AC.
    final LC
    LC.wrapAfter(int count)
    Same functionality as setWrapAfter(int) only this method returns this for chaining multiple calls.
    Methods in net.miginfocom.layout with parameters of type LC
    Modifier and Type
    Method
    Description
    static final String
    IDEUtil.getConstraintString(LC lc, boolean asAPI)
    Returns the a constraint string that can be re-parsed to be the exact same LayoutConstraint.
    static final boolean
    LayoutUtil.isLeftToRight(LC lc, ContainerWrapper container)
    Returns if left-to-right orientation is used.
    Constructors in net.miginfocom.layout with parameters of type LC
    Modifier
    Constructor
    Description
     
    Grid(ContainerWrapper container, LC lc, AC rowConstr, AC colConstr, Map<ComponentWrapper,CC> ccMap, ArrayList<LayoutCallback> callbackList)
    Constructor.
  • Uses of LC in net.miginfocom.swing

    Constructors in net.miginfocom.swing with parameters of type LC
    Modifier
    Constructor
    Description
     
    MigLayout(LC layoutConstraints)
    Constructor.
     
    MigLayout(LC layoutConstraints, AC colConstraints)
    Constructor.
     
    MigLayout(LC layoutConstraints, AC colConstraints, AC rowConstraints)
    Constructor.