Package com.google.gdt.eclipse.designer.util

Examples of com.google.gdt.eclipse.designer.util.DefaultModuleDescription


   * Test for {@link Utils#getModuleId(IFile)}.<br>
   * Module file in root of source folder.
   */
  public void test_getModuleId_2() throws Exception {
    IFile file = setFileContentSrc("TopLevel.gwt.xml", "");
    ModuleDescription module = new DefaultModuleDescription(file);
    assertEquals("TopLevel", module.getId());
  }
View Full Code Here


    return getFileSrc("test/Module.gwt.xml");
  }

  private ModuleDescription getModuleDescription() throws Exception {
    IFile moduleFile = getModuleFile();
    return new DefaultModuleDescription(moduleFile);
  }
View Full Code Here

TOP

Related Classes of com.google.gdt.eclipse.designer.util.DefaultModuleDescription

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.