Examples of FixedValue


Examples of com.esotericsoftware.tablelayout.Value.FixedValue

    return this;
  }

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

Examples of com.esotericsoftware.tablelayout.Value.FixedValue

    return this;
  }

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

Examples of com.esotericsoftware.tablelayout.Value.FixedValue

    return this;
  }

  /** Sets the padTop, padLeft, padBottom, and padRight to the specified value. */
  public Cell<C> pad (float pad) {
    Value value = new FixedValue(pad);
    padTop = value;
    padLeft = value;
    padBottom = value;
    padRight = value;
    return this;
View Full Code Here

Examples of com.esotericsoftware.tablelayout.Value.FixedValue

    padRight = value;
    return this;
  }

  public Cell<C> pad (float top, float left, float bottom, float right) {
    padTop = new FixedValue(top);
    padLeft = new FixedValue(left);
    padBottom = new FixedValue(bottom);
    padRight = new FixedValue(right);
    return this;
  }
View Full Code Here

Examples of com.esotericsoftware.tablelayout.Value.FixedValue

    padRight = new FixedValue(right);
    return this;
  }

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

Examples of com.esotericsoftware.tablelayout.Value.FixedValue

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

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

Examples of com.esotericsoftware.tablelayout.Value.FixedValue

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

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

Examples of com.esotericsoftware.tablelayout.Value.FixedValue

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

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

Examples of com.esotericsoftware.tablelayout.Value.FixedValue

    return (L)this;
  }

  /** Sets the padTop, padLeft, padBottom, and padRight around the table to the specified value. */
  public L pad (float pad) {
    padTop = new FixedValue(pad);
    padLeft = new FixedValue(pad);
    padBottom = new FixedValue(pad);
    padRight = new FixedValue(pad);
    sizeInvalid = true;
    return (L)this;
  }
View Full Code Here

Examples of com.esotericsoftware.tablelayout.Value.FixedValue

    sizeInvalid = true;
    return (L)this;
  }

  public L pad (float top, float left, float bottom, float right) {
    padTop = new FixedValue(top);
    padLeft = new FixedValue(left);
    padBottom = new FixedValue(bottom);
    padRight = new FixedValue(right);
    sizeInvalid = true;
    return (L)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.