Exemplo n.º 1
0
 public UserDetail() {
   initComponents();
   objDB = new DBOperations();
   lst = objDB.getAllUsers();
   if (lst.size() > 0) {
     objBean = lst.get(0);
     showRecord(objBean);
   }
   disable(false);
   disableButton(true);
   TxtUserId.setEditable(false);
 }