443444445446447448449450
padRight = new Fixed(right); return this; } public Cell<T> padTop (float padTop) { this.padTop = new Fixed(padTop); return this; }
448449450451452453454455
this.padTop = new Fixed(padTop); return this; } public Cell<T> padLeft (float padLeft) { this.padLeft = new Fixed(padLeft); return this; }
453454455456457458459460
this.padLeft = new Fixed(padLeft); return this; } public Cell<T> padBottom (float padBottom) { this.padBottom = new Fixed(padBottom); return this; }
458459460461462463464465
this.padBottom = new Fixed(padBottom); return this; } public Cell<T> padRight (float padRight) { this.padRight = new Fixed(padRight); return this; }
215216217218219220221222
return this; } /** Sets the minWidth, prefWidth, maxWidth, minHeight, prefHeight, and maxHeight to the specified value. */ public Container<T> size (float size) { size(new Fixed(size)); return this; }
221222223224225226227228
return this; } /** Sets the minWidth, prefWidth, maxWidth, minHeight, prefHeight, and maxHeight to the specified values. */ public Container<T> size (float width, float height) { size(new Fixed(width), new Fixed(height)); return this; }
235236237238239240241242
return this; } /** Sets the minWidth, prefWidth, and maxWidth to the specified value. */ public Container<T> width (float width) { width(new Fixed(width)); return this; }
249250251252253254255256
return this; } /** Sets the minHeight, prefHeight, and maxHeight to the specified value. */ public Container<T> height (float height) { height(new Fixed(height)); return this; }
279280281282283284285286
return this; } /** Sets the minWidth and minHeight to the specified value. */ public Container<T> minSize (float size) { minSize(new Fixed(size)); return this; }
285286287288289290291292
return this; } /** Sets the minWidth and minHeight to the specified values. */ public Container<T> minSize (float width, float height) { minSize(new Fixed(width)); return this; }