/* 100. Button */
final Div divBtn1 = new Div();
divBtn1.setStyle("align: center");
divBtn1.setParent(this.div_Buttons);
this.btn100 = new Button();
this.btn100.setId("btn100");
this.btn100.setLabel("insert 100");
this.btn100.setImage("/images/icons/import_16x16.gif");
this.btn100.setTooltiptext("Insert 100 randomly created customer records");
this.btn100.setParent(divBtn1);
this.btn100.addEventListener("onClick", new OnClick100Eventlistener());
/* Separator */
createNewSeparator(this.div_Buttons, "horizontal", false, "5", "");
createNewSeparator(this.div_Buttons, "horizontal", false, "5", "");
/* 1.000 Button */
final Div divBtn2 = new Div();
divBtn2.setStyle("align: center;");
divBtn2.setParent(this.div_Buttons);
this.btn1000 = new Button();
this.btn1000.setId("btn1000");
this.btn1000.setLabel("insert 1.000");
this.btn1000.setImage("/images/icons/import_16x16.gif");
this.btn1000.setTooltiptext("Insert 1.000 randomly created customer records");
this.btn1000.setParent(divBtn2);