Package com.googlecode.gwt.test.internal.utils

Examples of com.googlecode.gwt.test.internal.utils.WebXmlUtils


    */
   protected String getHostPagePath(String moduleFullQualifiedName) {
      List<String> expectedFileNames = new ArrayList<String>();

      // Use maybeGet : we may not always have a web.xml file.
      WebXmlUtils webXmlUtils = WebXmlUtils.maybeGet();
      if (webXmlUtils != null) {
         // try first web.xml welcome-file
         addHostPagePaths(expectedFileNames, webXmlUtils.getFirstWelcomeFile());
      }

      // try with gwt default structure
      String fileSimpleName = moduleFullQualifiedName.substring(moduleFullQualifiedName.lastIndexOf('.') + 1)
               + ".html";
View Full Code Here

TOP

Related Classes of com.googlecode.gwt.test.internal.utils.WebXmlUtils

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.