Examples of FixedValue


Examples of com.esotericsoftware.tablelayout.Value.FixedValue

    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;
  }
View Full Code Here

Examples of com.esotericsoftware.tablelayout.Value.FixedValue

    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;
  }
View Full Code Here

Examples of com.esotericsoftware.tablelayout.Value.FixedValue

    return this;
  }

  /** Sets the minWidth, prefWidth, and maxWidth to the specified value. */
  public Cell<C> width (float width) {
    width(new FixedValue(width));
    return this;
  }
View Full Code Here

Examples of com.esotericsoftware.tablelayout.Value.FixedValue

    return this;
  }

  /** Sets the minHeight, prefHeight, and maxHeight to the specified value. */
  public Cell<C> height (float height) {
    height(new FixedValue(height));
    return this;
  }
View Full Code Here

Examples of com.esotericsoftware.tablelayout.Value.FixedValue

    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;
  }
View Full Code Here

Examples of com.esotericsoftware.tablelayout.Value.FixedValue

    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;
  }
View Full Code Here

Examples of com.esotericsoftware.tablelayout.Value.FixedValue

    minHeight = new FixedValue(height);
    return this;
  }

  public Cell<C> minWidth (float minWidth) {
    this.minWidth = new FixedValue(minWidth);
    return this;
  }
View Full Code Here

Examples of com.esotericsoftware.tablelayout.Value.FixedValue

    this.minWidth = new FixedValue(minWidth);
    return this;
  }

  public Cell<C> minHeight (float minHeight) {
    this.minHeight = new FixedValue(minHeight);
    return this;
  }
View Full Code Here

Examples of com.esotericsoftware.tablelayout.Value.FixedValue

    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;
  }
View Full Code Here

Examples of com.esotericsoftware.tablelayout.Value.FixedValue

    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;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.