public void populate(FormItemRepresentation rep) throws FormBuilderException {
if (!(rep instanceof ImageRolodexRepresentation)) {
throw new FormBuilderException(i18n.RepNotOfType(rep.getClass().getName(), "ImageRolodexRepresentation"));
}
super.populate(rep);
ImageRolodexRepresentation irep = (ImageRolodexRepresentation) rep;
this.selectedIndex = irep.getSelectedIndex();
this.animated = irep.isAnimated();
this.urls = irep.getImageUrls();
populate(this.panel);
}