0

我正在使用 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 移动到不同的包意味着私有/受保护的访问修饰符会阻止我访问代码,但是将它们更改为公共也对我没有任何好处。

任何修复建议将不胜感激。这个应用程序有几个不同的类包(本质上相当于应用程序中的不同页面),它们都使用类似的表设置,所以我想避免每个包中都有重复的代码;我只是不能 100% 确定实现这一目标的最佳方式。

在 Binders 包中创建抽象类,然后在各个应用程序包中扩展它们会解决问题,还是我缺少什么?

4

1 回答 1

1
  1. 在指定的通用包中编写您的通用UiBinders 和相应的类(Widgets 或s)。View我们称之为my.general.uibinders包。
  2. 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 -->
    
  3. 从现在开始,在 this 中UiBinderc是对驻留在 中的类的引用my.general.uibinders。假设您有一个MyGeneralView名为.<c:MyGeneralView .../>UiBinder

于 2012-04-26T23:42:46.197 回答