public void populate(FormItemRepresentation rep) throws FormBuilderException {
if (!(rep instanceof TextAreaRepresentation)) {
throw new FormBuilderException(i18n.RepNotOfType(rep.getClass().getName(), "TextAreaRepresentation"));
}
super.populate(rep);
TextAreaRepresentation trep = (TextAreaRepresentation) rep;
this.cols = trep.getCols();
this.id = trep.getId();
this.name = trep.getName();
this.rows = trep.getRows();
this.defaultValue = trep.getValue();
populate(this.area);
}