Package java.awt

Examples of java.awt.TextArea.appendText()


  public void test(TestHarness harness)
  {
    TextArea a = new TextArea("Hello");
    // Append to the end of text.
    harness.check(a.getPeer(), null);
    a.appendText(" World!");
    harness.check(a.getText(), "Hello World!");
  }

}
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.