ListModelList<UserRole> lmUg = new ListModelList<UserRole>(grups);
lstData.setModel(lmUg);
}
public UserRole extract() {
UserRole tarif = txtIdUserRole.getText() != null
? !"".equals(txtIdUserRole.getText())
? userRoleRepository.findOne(txtIdUserRole.getText())
: new UserRole()
: new UserRole();
tarif.setKeterangan(txtKeterangan.getText());
tarif.setNama(txtNama.getValue());
tarif.setKode(txtKode.getValue());
return tarif;
}