Package com.esotericsoftware.tablelayout.Value

Examples of com.esotericsoftware.tablelayout.Value.FixedValue


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


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

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

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

TOP

Related Classes of com.esotericsoftware.tablelayout.Value.FixedValue

Copyright © 2018 www.massapicom. 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.