public void populate(FormItemRepresentation rep) throws FormBuilderException {
if (!(rep instanceof HTMLRepresentation)) {
throw new FormBuilderException(i18n.RepNotOfType(rep.getClass().getName(), "HTMLRepresentation"));
}
super.populate(rep);
HTMLRepresentation hrep = (HTMLRepresentation) rep;
this.setContent(hrep.getContent());
}