Package org.fest.swing.test.swing

Examples of org.fest.swing.test.swing.TestList


  @Override
  final void extraSetUp() {
    dropList = execute(new GuiQuery<TestList>() {
      @Override
      protected TestList executeInEDT() {
        TestList l = new TestList("four", "five", "six");
        l.setName("dropList");
        window.addList(l);
        return l;
      }
    });
  }
View Full Code Here

TOP

Related Classes of org.fest.swing.test.swing.TestList

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.