Lines Matching defs:resizable

646      * @param resizable {@code true} if the group is resizable; if the group
647 * is not resizable the preferred size is used for the
655 boolean resizable){
661 return new BaselineGroup(resizable);
663 return new ParallelGroup(alignment, resizable);
670 * @param resizable whether the group is resizable
676 public ParallelGroup createBaselineGroup(boolean resizable,
678 return new BaselineGroup(resizable, anchorBaselineToTop);
691 * Linked Components are not be resizable.
715 * Linked {@code Component}s are not be resizable.
1861 * resizable.
1918 * resizable.
1977 * resizable.
2049 // 3. Iterate through each of the resizable Springs, attempting
2056 // First pass, sort the resizable springs into the List resizable
2057 List<SpringDelta> resizable = buildResizableList(axis, useMin);
2058 int resizableCount = resizable.size();
2070 SpringDelta springDelta = resizable.get(counter);
2094 // Nothing resizable, use the min or max of each of the
2117 // First pass, figure out what is resizable
2276 // Spring to use for baseline isn't resizable. In this case
2305 // resizable. Fall through to OTHER.
2331 // Not resizable, treat as constant_ascent
2399 * Elements aligned to the baseline are resizable if they have have
2402 * behavior of {@code OTHER} or {@code CENTER_OFFSET} are not resizable.
2457 // Whether or not we're resizable.
2458 private final boolean resizable;
2460 ParallelGroup(Alignment childAlignment, boolean resizable) {
2462 this.resizable = resizable;
2558 return resizable;
2677 BaselineGroup(boolean resizable) {
2678 super(Alignment.LEADING, resizable);
2683 BaselineGroup(boolean resizable, boolean baselineAnchoredToTop) {
2684 this(resizable);
2787 default: // CENTER_OFFSET and OTHER, not resizable
2837 // CENTER_OFFSET and OTHER are !resizable, use
2888 default: // CENTER_OFFSET & OTHER, not resizable