Package com.google.gdt.eclipse.designer.gwtext.actions

Examples of com.google.gdt.eclipse.designer.gwtext.actions.ConfigureGwtExtOperation


      URL gwtExtEntry = bundle.getEntry("\\resources\\gwtext.jar");
      String gwtExtLocation = FileLocator.toFileURL(gwtExtEntry).getPath();
      m_testProject.addExternalJar(gwtExtLocation);
    }
    // configure for GWT-Ext
    new ConfigureGwtExtOperation(moduleDescription).run(null);
  }
View Full Code Here


  //
  ////////////////////////////////////////////////////////////////////////////
  public void test_0() throws Exception {
    try {
      ModuleDescription moduleDescription = getTestModuleDescription();
      new ConfigureGwtExtOperation(moduleDescription).run(null);
      waitForAutoBuild();
      // gwtext.jar should be added
      assertTrue(ProjectUtils.hasType(
          m_testProject.getJavaProject(),
          "com.gwtext.client.widgets.Component"));
View Full Code Here

  }

  @Override
  protected void configureModule(ModuleDescription moduleDescription) throws Exception {
    m_testProject.addBundleJars("com.google.gdt.eclipse.designer.GWTExt", "/resources");
    new ConfigureGwtExtOperation(moduleDescription).run(null);
    // don't use "strict" mode
    {
      String html = getFileContent("war/Module.html");
      html = StringUtils.remove(html, "<!doctype html>");
      setFileContent("war/Module.html", html);
View Full Code Here

TOP

Related Classes of com.google.gdt.eclipse.designer.gwtext.actions.ConfigureGwtExtOperation

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.