- jvincent
- 等级:
- 性别:
- 文章: 211
- 积分: 264
- 来自: 北京
|
同样的一段代码,加上一句 就可以继续执行,否则不行!!真是怪了.. 代码如下:
java 代码
- private void initLeftList() {
-
- ufRoleService.loadAllUserRole(new AsyncCallback() {
- public void onFailure(Throwable caught) {
- Window.alert("获得角色信息时,数据库出错!!");
- }
- public void onSuccess(Object result) {
- List roles = (List) result;
- if (roles != null) {
- int count = 0;
-
- roleTable.resize(roles.size(), 2);
- for (Iterator iter = roles.iterator(); iter.hasNext();) {
- UfRoleDTO element = (UfRoleDTO) iter.next();
- roleTable.setText(count, 0, element.getRolename());
- roleTable.getCellFormatter().
- addStyleName(count, 0, "financeTableRowWithCheckBox2");
- checkBoxs = new CheckBox[allFuncNodes.size()];
- for (int i = 0; i < allFuncNodes.size(); i++) {
- checkBoxs[i] = new CheckBox();
- UfFuncregisterDTO dto = (UfFuncregisterDTO) allFuncNodes.get(i);
- checkBoxs[i].setText(dto.getFunName());
- }
- Window.alert("Debug: 1111");
-
- ufRoleService.findByPk(element.getPkRole().toString(), new AsyncCallback() {
- public void onFailure(Throwable caught) {
-
- Window.alert("获得角色信息出错!!");
- }
- public void onSuccess(Object result) {
-
- if(result == null) {
- Window.alert("角色为空!!");
- return ;
- }
- UfRoleDTO roleDTO = (UfRoleDTO) result;
- if(roleDTO.getUfRoleFuncs() != null) {
-
- Iterator iter = roleDTO.getUfRoleFuncs().iterator();
- while(iter.hasNext()) {
- UfRoleFuncDTO roleFuncDTO = (UfRoleFuncDTO) iter.next();
-
- UfFuncregisterDTO funDTO = roleFuncDTO.getUfFuncregisterDTO();
- validFunc.add(funDTO);
- }
- }
- }
- });
-
-
- HorizontalPanel hPanel = new HorizontalPanel();
- for (int i = 0; i < checkBoxs.length; i++) {
- hPanel.add(checkBoxs[i]);
- }
- roleTable.setWidget(count, 1, hPanel);
- roleTable.getCellFormatter().addStyleName(count, 1, "financeTableRowWithCheckBox");
- count ++;
- }
- }
- }
- });
- }
声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
|
返回顶楼 |
|
|
- jvincent
- 等级:
- 性别:
- 文章: 211
- 积分: 264
- 来自: 北京
|
自己解决..
方法:把第7行的代码改为:
java 代码
- if(role == null) {
- Window.alert("角色为空!!");l
- }
- .....
不知是何原因....研究中.......
|
返回顶楼 |
|
|
- jvincent
- 等级:
- 性别:
- 文章: 211
- 积分: 264
- 来自: 北京
|
还是不行啊..为什么啊?
|
返回顶楼 |
|
|
- jvincent
- 等级:
- 性别:
- 文章: 211
- 积分: 264
- 来自: 北京
|
终于搞定了..原来是使用了两个数据没有全部加在完成就使用了.结果报了空指针..
|
返回顶楼 |
|
|