* 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;
}