我不确定如何使用zk Hbox数组。我正在尝试创建一个ZK Hbox组件数组,并在for block中使用它。
void createRow(Component container, final Node fieldNode, FieldCreator [] fieldDescription) {
final Vbox fieldsRows = new Vbox();
final Hbox fieldsRow = new Hbox();
final Hbox[] fieldBox;
int i=0;
for (FieldCreator fieldDesc : fieldDescription) {
fieldBox[i] = new Hbox();
fieldDesc.createField(fieldNode, fieldBox[i]);
i++;
}
fieldsRow.appendChild(fieldBox[]);
Button removeFieldButton = new Button(Messages.getString("MXFC_removeFieldButton")); //$NON-NLS-1$
fieldsRow.appendChild(removeFieldButton);
fieldsRows.appendChild(fieldsRow);
removeFieldButton.addEventListener(Events.ON_CLICK, new EventListener() {
public void onEvent(Event event) throws Exception {
fieldNode.getParentNode().removeChild(fieldNode);
fieldBox[].setParent(null);
}
});
container.appendChild(fieldsRows);
}
上面的代码不正确。编译器抛出错误:“令牌上的语法错误”[“,此令牌后预期的表达式。”在线:
fieldsRow.appendChild(fieldBox[]);
fieldBox[].setParent(null);
我该如何解决这个问题?
谢谢, 索尼
答案 0 :(得分:1)
索尼,
您的java代码中存在一些语法错误。
要解决这些问题,我们必须了解您希望在这段代码中实现的目标。根据我的猜测,你应该
初始化fieldBox。
Hbox[] fieldBox = new Hbox[fieldDescription.length];
在追加/分离行的子项时迭代列。
for(int i=0; i<fieldBox.length; i++) fieldsRow.appendChild(fieldBox[i]);
for(int i=0; i<fieldBox.length; i++) fieldBox[i].setParent(null);