public void carregarRegistro(ActionEvent evento) {
final String id = ((HtmlActionParameter)((HtmlAjaxCommandButton)evento.getSource()).getChildren().get(0)).getValue().toString();
int idRamo = Integer.parseInt(id);
final Ramo ramo = this.getDao().obterPorId(idRamo);
this.getRamo().setIdRamo(ramo.getIdRamo());
this.getRamo().setNomeRamo(ramo.getNomeRamo());
}