如何制作在GWT中检查的对象列表?

时间:2017-09-01 12:02:08

标签: java checkbox gwt gxt

我正在开发一个GWT应用程序,我正在使用复选框。我有复选框中的GwtRoles列表,但我不知道如何获得那些被检查的GwtRoles。这是我的代码:

@Override
    public void createBody() {

    for (GwtRole gwtRole : roleList) {
                checkBox = new CheckBox();
                checkBox.setBoxLabel(gwtRole.getName());
                for (GwtAccessRole gwtAccessRole : lista) {
                    if (gwtRole.getId().equals(gwtAccessRole.getRoleId())) {
                        checkBox.setValue(true);
                    }

RoleList是复选框中的GwtRoles列表。此列表是用户打开表单时应预先检查的项目列表。我对GWT中的复选框并不熟悉。 我已经使用了CheckBox列表,并且我有方法getChecked()返回所有已检查GwtRoles的列表,但是这里有这个复选框我没有那个选项。 在这个方法中,我应该列出一个被检查的GwtRoles列表:

 @Override
    public void submit() {

        List<GwtAccessRoleCreator> listCreator = new ArrayList<GwtAccessRoleCreator>();

        for (GwtRole role : list) {
            GwtAccessRoleCreator gwtAccessRoleCreator = new GwtAccessRoleCreator();

            gwtAccessRoleCreator.setScopeId(currentSession.getSelectedAccount().getId());

            gwtAccessRoleCreator.setAccessInfoId(accessInfoId);

            gwtAccessRoleCreator.setRoleId(role.getId());
            listCreator.add(gwtAccessRoleCreator);
        }
        GWT_ACCESS_ROLE_SERVICE.createCheck(xsrfToken, currentSession.getSelectedAccount().getId(), userId, listCreator, new AsyncCallback<GwtAccessRole>() {

            @Override
            public void onSuccess(GwtAccessRole arg0) {
                exitStatus = true;
                exitMessage = MSGS.dialogAddConfirmation();
                hide();
            }

有人可以帮助我如何设置已检查的GwtRoles列表吗?

1 个答案:

答案 0 :(得分:1)

跟踪CheckBox中的Map,然后只返回选中该复选框的GwtRole

private Map<GwtRole, CheckBox> mapping = new HashMap<>();

@Override
public void createBody() {
    for (GwtRole gwtRole : roleList) {
        CheckBox checkBox = new CheckBox();
        mapping.put(gwtRole, checkBox);
        // Your other code here.
    }
}

// Java 8
public List<GwtRole> getChecked()
{
    return mapping.entrySet().stream()
        .filter(e -> e.getValue().getValue())
        .map(Map.Entry::getKey)
        .collect(Collectors.toList());
}

// Pre-Java 8
public List<GwtRole> getChecked()
{
    List<GwtRole> result = new ArrayList<>();

    for(Map.Entry<GwtRole, CheckBox> e : map.entrySet())
    {
        if(e.getValue().getValue())
            result.add(e.getKey());
    }

    return result;
}