ActionRegistry actionRegistry = new ActionRegistry(this);
Control control = new Control(new CallbackTest(), "Tree component test", null, null, false);
ControlPanel panel = control.getPanel();
CheckSelectionProperty csh = new CheckSelectionProperty();
csh.setLabel("a multiselect");
csh.setProperty("prop");
csh.setValues("element1,element2,element3,element4");
csh.setSeparator(",");
csh.setEscapeSequence("\\");
csh.setEditable(true);
csh.addToControlPanel(panel);
ButtonBar controlBar = new ButtonBar();
controlBar.addConfiguredButton(new Button("ok", null, ActionType.OK));
controlBar.addConfiguredButton(new Button("reset", null, ActionType.RESET));
controlBar.setAlign(BorderLayout.EAST);