Examples of FixedValue


Examples of com.esotericsoftware.tablelayout.Value.FixedValue

    prefHeight = new FixedValue(size);
    return this;
  }

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

Examples of com.esotericsoftware.tablelayout.Value.FixedValue

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

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

Examples of com.esotericsoftware.tablelayout.Value.FixedValue

    return this;
  }

  /** Sets the maxWidth and maxHeight to the specified value. */
  public Cell<C> maxSize (float size) {
    maxWidth = new FixedValue(size);
    maxHeight = new FixedValue(size);
    return this;
  }
View Full Code Here

Examples of com.esotericsoftware.tablelayout.Value.FixedValue

    return this;
  }

  /** Sets the maxWidth and maxHeight to the specified values. */
  public Cell<C> maxSize (float width, float height) {
    maxWidth = new FixedValue(width);
    maxHeight = new FixedValue(height);
    return this;
  }
View Full Code Here

Examples of com.esotericsoftware.tablelayout.Value.FixedValue

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

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

Examples of com.esotericsoftware.tablelayout.Value.FixedValue

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

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

Examples of com.esotericsoftware.tablelayout.Value.FixedValue

  }

  /** Sets the spaceTop, spaceLeft, spaceBottom, and spaceRight to the specified value. */
  public Cell<C> space (float space) {
    if (space < 0) throw new IllegalArgumentException("space cannot be < 0.");
    Value value = new FixedValue(space);
    spaceTop = value;
    spaceLeft = value;
    spaceBottom = value;
    spaceRight = value;
    return this;
View Full Code Here

Examples of com.esotericsoftware.tablelayout.Value.FixedValue

  public Cell<C> space (float top, float left, float bottom, float right) {
    if (top < 0) throw new IllegalArgumentException("top cannot be < 0.");
    if (left < 0) throw new IllegalArgumentException("left cannot be < 0.");
    if (bottom < 0) throw new IllegalArgumentException("bottom cannot be < 0.");
    if (right < 0) throw new IllegalArgumentException("right cannot be < 0.");
    spaceTop = new FixedValue(top);
    spaceLeft = new FixedValue(left);
    spaceBottom = new FixedValue(bottom);
    spaceRight = new FixedValue(right);
    return this;
  }
View Full Code Here

Examples of com.esotericsoftware.tablelayout.Value.FixedValue

    return this;
  }

  public Cell<C> spaceTop (float spaceTop) {
    if (spaceTop < 0) throw new IllegalArgumentException("spaceTop cannot be < 0.");
    this.spaceTop = new FixedValue(spaceTop);
    return this;
  }
View Full Code Here

Examples of com.esotericsoftware.tablelayout.Value.FixedValue

    return this;
  }

  public Cell<C> spaceLeft (float spaceLeft) {
    if (spaceLeft < 0) throw new IllegalArgumentException("spaceLeft cannot be < 0.");
    this.spaceLeft = new FixedValue(spaceLeft);
    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.