2013-07-04 65 views
0

如果我沒有在我的gwt.xml中指定<source path='insertname4folder'/>之類的東西,gwt java2js編譯器的默認行爲是什麼。我看到一些不使用這些標籤的多模塊項目,我只能說只有一個類將被翻譯,因爲它在X.client.Y包中;我假設j2js編譯器默認使用該約定呢?當gwt.xml中沒有<source>標籤時會發生什麼?

回答

3

它假設名爲「client」的默認文件夾,該文件夾與module.gwt.xml文件並行。

實施例:

Location of module xml file - com.insanity.examples.gwt.HelloWorld.gwt.xml 
Location of default gwt client code - com.insanity.examples.gwt.client 

即如在文件.gwt.xml具有標籤一樣好。

你可以閱讀更多關於它在這裏 - 。http://www.gwtproject.org/doc/latest/DevGuideOrganizingProjects.html#DevGuideModules

+0

但它也將檢查com.insanity.examples.gwt.client *吧? – osh

+0

是的。 com.insanity.examples.gwt.client的包和子包下的所有文件都被認爲是與JAVAScript兼容的代碼。 – SSR

相關問題