328329330331332333334335336
return (L)this; } /** Padding at the top edge of the table. */ public L padTop (float padTop) { this.padTop = new FixedValue(padTop); sizeInvalid = true; return (L)this; }
335336337338339340341342343
return (L)this; } /** Padding at the left edge of the table. */ public L padLeft (float padLeft) { this.padLeft = new FixedValue(padLeft); sizeInvalid = true; return (L)this; }
342343344345346347348349350
return (L)this; } /** Padding at the bottom edge of the table. */ public L padBottom (float padBottom) { this.padBottom = new FixedValue(padBottom); sizeInvalid = true; return (L)this; }
349350351352353354355356357
return (L)this; } /** Padding at the right edge of the table. */ public L padRight (float padRight) { this.padRight = new FixedValue(padRight); sizeInvalid = true; return (L)this; }