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

Examples of com.google.gdt.eclipse.designer.smart.actions.ConfigureSmartGwtOperation


  ////////////////////////////////////////////////////////////////////////////
  @DisposeProjectAfter
  public void test_0() throws Exception {
    IFile moduleFile = getTestModuleFile();
    ModuleDescription moduleDescription = getTestModuleDescription();
    new ConfigureSmartGwtOperation(moduleDescription, SmartGwtTests.LOCATION).run(null);
    waitForAutoBuild();
    // smartgwt.jar and smartgwt-skins.jar files should be added
    assertTrue(ProjectUtils.hasType(
        m_testProject.getJavaProject(),
        "com.smartgwt.client.widgets.BaseWidget"));
View Full Code Here


  private void configureForSmartGWT_inTests(IFile moduleFile) throws Exception {
    m_testProject.addExternalJar(SmartGwtTests.LOCATION + "/smartgwt.jar");
    m_testProject.addExternalJar(SmartGwtTests.LOCATION + "/smartgwt-skins.jar");
    {
      ModuleDescription moduleDescription = getTestModuleDescription();
      new ConfigureSmartGwtOperation(moduleDescription, SmartGwtTests.LOCATION).run(null);
    }
  }
View Full Code Here

  @Override
  protected void configureModule(ModuleDescription moduleDescription) throws Exception {
    m_testProject.addExternalJar(SmartGwtTests.LOCATION + "/smartgwt.jar");
    m_testProject.addExternalJar(SmartGwtTests.LOCATION + "/smartgwt-skins.jar");
    new ConfigureSmartGwtOperation(moduleDescription, SmartGwtTests.LOCATION).run(null);
  }
View Full Code Here

  ////////////////////////////////////////////////////////////////////////////
  @Override
  protected void configureModule(ModuleDescription moduleDescription) throws Exception {
    m_testProject.addExternalJar(SmartGwtTests.LOCATION + "/smartgwt.jar");
    m_testProject.addExternalJar(SmartGwtTests.LOCATION + "/smartgwt-skins.jar");
    new ConfigureSmartGwtOperation(moduleDescription, SmartGwtTests.LOCATION).run(null);
  }
View Full Code Here

TOP

Related Classes of com.google.gdt.eclipse.designer.smart.actions.ConfigureSmartGwtOperation

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.