Example #1
0
 public boolean equals(Object obj) {
   if (this == obj) return true;
   if (obj != null && obj.getClass() == Account.class) {
     Account target = (Account) obj;
     return target.getAccountNo().equals(accountNo);
   }
   return false;
 }