public void populate(FormItemRepresentation rep) throws FormBuilderException {
if (!(rep instanceof ServerTransformationRepresentation)) {
throw new FormBuilderException(i18n.RepNotOfType(rep.getClass().getName(), "ServerTransformationRepresentation"));
}
super.populate(rep);
ServerTransformationRepresentation srep = (ServerTransformationRepresentation) rep;
this.setScriptContent(srep.getScript());
srep.setLanguage(this.language);
}