我正在使用GWT开发Web应用程序,并且正在修改它以使用UiBinders构建。
我有一个与引用它们的类相同的软件包中包含的几种活页夹的工作版本,但是其中许多活页夹在整个应用程序中具有通用实用程序,我希望将它们分解为uibinders包。
这是一些工作代码片段
TableListPanel.ui.xml文件:
<!DOCTYPE ui:UiBinder SYSTEM "http://dl.google.com/gwt/DTD/xhtml.ent">
<ui:UiBinder xmlns:ui="urn:ui:com.google.gwt.uibinder"
xmlns:g="urn:import:com.google.gwt.user.client.ui">
<g:HTMLPanel>
<div id="tableListPanel">
<g:HTMLPanel styleName="buttonPanel" ui:field="buttonPanel"></g:HTMLPanel>
<g:HTMLPanel styleName="tableList" ui:field="tableList"></g:HTMLPanel>
<table align="center"><tr>
<td align="center"><g:HTMLPanel styleName="tableMenu" ui:field="tableMenu"></g:HTMLPanel></td>
</tr></table>
</div>
</g:HTMLPanel>
</ui:UiBinder>
TableListPanelBinder Java文件:
public class TableListPanelBinder extends Composite implements HasText {
private static AuditPanelUiBinder uiBinder = GWT
.create(AuditPanelUiBinder.class);
interface AuditPanelUiBinder extends UiBinder<Widget, TableListPanelBinder> {
}
public TableListPanelBinder() {
initWidget(uiBinder.createAndBindUi(this));
}
@UiField
protected HTMLPanel buttonPanel;
@UiField
protected HTMLPanel tableList;
@UiField
protected HTMLPanel tableMenu;
public void bindUiElement(HTMLPanel container, Widget widjetObj) {
container.add(widjetObj);
}
最后,将小部件绑定到上述ui:fields的代码中的调用:
public AuditReportProfilesPanel() {
super();
this.setWidth("100%");
this.setSpacing(4);
this.parmSetsTable = createParmSetsTable();
SimplePager.Resources pagerResources = GWT.create(SimplePager.Resources.class);
pager = new SimplePager(TextLocation.CENTER, pagerResources, false, 0, true);
pager.setDisplay(parmSetsTable);
TableListPanelBinder reportListBinder = new TableListPanelBinder();
this.add(reportListBinder);
// -START- Bind UI Elements -START-
reportListBinder.bindUiElement(reportListBinder.tableList, parmSetsTable);
reportListBinder.bindUiElement(reportListBinder.tableMenu, pager);
reportListBinder.bindUiElement(reportListBinder.buttonPanel, createActionBar());
//-END- Bind UI Elements -END-
}
我知道这可能不是最简单的设置方法,但是我正在学习。
我知道将Binder移到其他程序包意味着私有/受保护的访问修饰符将阻止我访问代码,但是将其更改为公共代码也无济于事。
任何建议的修复将不胜感激。这个应用程式有几个不同的类别套件(实质上等于应用程式中的不同页面),而且它们都使用相似的表格设定,因此我要避免每个套件中都有重复的程式码;我只是不确定要实现这一目标的最佳方法。
在Binders包中创建Abstract类,然后在单个应用程序包中对其进行扩展是否可以解决问题,或者我缺少什么?
最佳答案
在指定的通用程序包中编写通用的UiBinder
和相应的类(Widget
或View
)。我们称它为my.general.uibinders
包。
在对应于具体页面(或UiBinder
)的Place
中,将此包作为xmlns
属性的ui:UiBinder
属性导入UiBinder
开头的标签。这条路:
<ui:UiBinder xmlns:ui="urn:ui:com.google.gwt.uibinder"
xmlns:g="urn:import:com.google.gwt.user.client.ui"
xmlns:c="urn:import:my.general.uibinders"> <!-- this is the addition -->
从现在开始,在此
UiBinder
中,c
是对驻留在my.general.uibinders
中的类的引用。假设您有一个名为MyGeneralView
的类,请按以下方式使用它:<c:MyGeneralView .../>
完全超出您的UiBinder
。关于java - 如何在“外部”包中使用GWT UI绑定(bind)器,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10341511/