public String renderHtml() {
HtmlRenderer html = new HtmlRenderer();
if (this.isEnabled()) {
html.inputCheckBox(this.getName(), this.isChecked(), false, this.checkedValue);
} else {
html.inputCheckBox("m_" + this.getName(), this.isChecked(), !this.isEnabled(), this.checkedValue);
html.inputHidden(this.getName(), isChecked() ? "true" : "false");
}
return html.toString();