}
private void createControlButton(int type, String label, String target) {
if (label != null && !label.equals("")) {
Button button = new Button();
ActionType actionType = new ActionType();
actionType.setValue(ActionType.getType(type));
button.setType(actionType);
button.setLabel(label);
button.setTarget(target);
if (controlBar == null) {
controlBar = new ButtonBar();