191192193194195196197198
return this; } /** Sets the minWidth and minHeight to the specified value. */ public Cell<T> minSize (float size) { minSize(new Fixed(size)); return this; }
197198199200201202203204
return this; } /** Sets the minWidth and minHeight to the specified values. */ public Cell<T> minSize (float width, float height) { minSize(new Fixed(width)); return this; }
202203204205206207208209
minSize(new Fixed(width)); return this; } public Cell<T> minWidth (float minWidth) { this.minWidth = new Fixed(minWidth); return this; }
207208209210211212213214
this.minWidth = new Fixed(minWidth); return this; } public Cell<T> minHeight (float minHeight) { this.minHeight = new Fixed(minHeight); return this; }
237238239240241242243244
return this; } /** Sets the prefWidth and prefHeight to the specified value. */ public Cell<T> prefSize (float width, float height) { prefSize(new Fixed(width)); return this; }
243244245246247248249250
return this; } /** Sets the prefWidth and prefHeight to the specified values. */ public Cell<T> prefSize (float size) { prefSize(new Fixed(size)); return this; }
248249250251252253254255
prefSize(new Fixed(size)); return this; } public Cell<T> prefWidth (float prefWidth) { this.prefWidth = new Fixed(prefWidth); return this; }
253254255256257258259260
this.prefWidth = new Fixed(prefWidth); return this; } public Cell<T> prefHeight (float prefHeight) { this.prefHeight = new Fixed(prefHeight); return this; }
283284285286287288289290
return this; } /** Sets the maxWidth and maxHeight to the specified value. */ public Cell<T> maxSize (float size) { maxSize(new Fixed(size)); return this; }
289290291292293294295296
return this; } /** Sets the maxWidth and maxHeight to the specified values. */ public Cell<T> maxSize (float width, float height) { maxSize(new Fixed(width)); return this; }