GWT涂鸦(1)——Starter Project
The module XML file位置:src/包/项目名.gwt.xml内容:
模块:项目名全小写
继承User
继承Standard theme
entry-point:client包下的项目文件名为类名的类
源client
源shared
meta tag
css: 项目名.css
js: 模块名/模块名.nocache.js
?
?
?
?
The Application Style Sheet位置:war/项目名.css内容:...?
The Entry Point Class位置:src/包.client/项目名.java内容:创建异步service的接口实现proxy对象作为private final属性:依赖服务注入;
创建组件对象作为private final属性(@question临时变量or属性);
实现EntryPoint.onModuleLoad():布局+组件设置+事件设置;
?
?
?
?
?
?
?
