*/
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";