290291292293294295296297
minSize(new Fixed(width)); return this; } public Container<T> minWidth (float minWidth) { this.minWidth = new Fixed(minWidth); return this; }
295296297298299300301302
this.minWidth = new Fixed(minWidth); return this; } public Container<T> minHeight (float minHeight) { this.minHeight = new Fixed(minHeight); return this; }
325326327328329330331332
return this; } /** Sets the prefWidth and prefHeight to the specified value. */ public Container<T> prefSize (float width, float height) { prefSize(new Fixed(width)); return this; }
331332333334335336337338
return this; } /** Sets the prefWidth and prefHeight to the specified values. */ public Container<T> prefSize (float size) { prefSize(new Fixed(size)); return this; }
336337338339340341342343
prefSize(new Fixed(size)); return this; } public Container<T> prefWidth (float prefWidth) { this.prefWidth = new Fixed(prefWidth); return this; }
341342343344345346347348
this.prefWidth = new Fixed(prefWidth); return this; } public Container<T> prefHeight (float prefHeight) { this.prefHeight = new Fixed(prefHeight); return this; }
371372373374375376377378
return this; } /** Sets the maxWidth and maxHeight to the specified value. */ public Container<T> maxSize (float size) { maxSize(new Fixed(size)); return this; }
377378379380381382383384
return this; } /** Sets the maxWidth and maxHeight to the specified values. */ public Container<T> maxSize (float width, float height) { maxSize(new Fixed(width)); return this; }
382383384385386387388389
maxSize(new Fixed(width)); return this; } public Container<T> maxWidth (float maxWidth) { this.maxWidth = new Fixed(maxWidth); return this; }
387388389390391392393394
this.maxWidth = new Fixed(maxWidth); return this; } public Container<T> maxHeight (float maxHeight) { this.maxHeight = new Fixed(maxHeight); return this; }