* Creates a new {@link Checkbox} and sets some default parameters in it
*
* @return a new {@link Checkbox}
*/
protected CheckBox generateCheckbox() {
CheckBox checkbox = new CheckBox();
checkbox.setTrueLabel("true");
checkbox.setFalseLabel("false");
return checkbox;
}