151152153154155156157158
return this; } /** Sets the minWidth, prefWidth, maxWidth, minHeight, prefHeight, and maxHeight to the specified value. */ public Cell<C> size (float size) { size(new FixedValue(size)); return this; }
157158159160161162163164
return this; } /** Sets the minWidth, prefWidth, maxWidth, minHeight, prefHeight, and maxHeight to the specified values. */ public Cell<C> size (float width, float height) { size(new FixedValue(width), new FixedValue(height)); return this; }
171172173174175176177178
return this; } /** Sets the minWidth, prefWidth, and maxWidth to the specified value. */ public Cell<C> width (float width) { width(new FixedValue(width)); return this; }
185186187188189190191192
return this; } /** Sets the minHeight, prefHeight, and maxHeight to the specified value. */ public Cell<C> height (float height) { height(new FixedValue(height)); return this; }
215216217218219220221222223
return this; } /** Sets the minWidth and minHeight to the specified value. */ public Cell<C> minSize (float size) { minWidth = new FixedValue(size); minHeight = new FixedValue(size); return this; }
222223224225226227228229230
return this; } /** Sets the minWidth and minHeight to the specified values. */ public Cell<C> minSize (float width, float height) { minWidth = new FixedValue(width); minHeight = new FixedValue(height); return this; }
228229230231232233234235
minHeight = new FixedValue(height); return this; } public Cell<C> minWidth (float minWidth) { this.minWidth = new FixedValue(minWidth); return this; }
233234235236237238239240
this.minWidth = new FixedValue(minWidth); return this; } public Cell<C> minHeight (float minHeight) { this.minHeight = new FixedValue(minHeight); return this; }
263264265266267268269270271
return this; } /** Sets the prefWidth and prefHeight to the specified value. */ public Cell<C> prefSize (float width, float height) { prefWidth = new FixedValue(width); prefHeight = new FixedValue(height); return this; }
270271272273274275276277278
return this; } /** Sets the prefWidth and prefHeight to the specified values. */ public Cell<C> prefSize (float size) { prefWidth = new FixedValue(size); prefHeight = new FixedValue(size); return this; }