Package forestry.core.gui

Examples of forestry.core.gui.GuiTextBox


    IMailAddress recipient = container.getRecipient();
    if (recipient != null) {
      address.setText(recipient.getName());
    }

    text = new GuiTextBox(this.fontRendererObj, guiLeft + 17, guiTop + 31, 122, 57);
    text.setMaxStringLength(128);
    if (!container.getText().isEmpty())
      text.setText(container.getText());
  }
View Full Code Here

TOP

Related Classes of forestry.core.gui.GuiTextBox

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.