Package com.google.gdt.eclipse.designer.smart.model

Examples of com.google.gdt.eclipse.designer.smart.model.WindowInfo


  //
  // Tests
  //
  ////////////////////////////////////////////////////////////////////////////
  public void test_flowContainer_CREATE() throws Exception {
    WindowInfo window =
        parseJavaInfo(
            "// filler filler filler",
            "public class Test extends Window {",
            "  public Test() {",
            "  }",
            "}");
    window.refresh();
    // prepare FlowContainer
    FlowContainer flowContainer;
    {
      List<FlowContainer> flowContainers = new FlowContainerFactory(window, true).get();
      assertThat(flowContainers).hasSize(1);
View Full Code Here


   * exception during preparing screen shot.
   * <p>
   * http://fogbugz.instantiations.com/fogbugz/default.asp?47230
   */
  public void test_ignore_setAutoCenter() throws Exception {
    WindowInfo window =
        parseJavaInfo(
            "// filler filler filler",
            "public class Test extends Window {",
            "  public Test() {",
            "    setAutoSize(true);",
            "    setAutoCenter(true);",
            "  }",
            "}");
    window.refresh();
    assertNoErrors(window);
  }
View Full Code Here

TOP

Related Classes of com.google.gdt.eclipse.designer.smart.model.WindowInfo

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.