コード例 #1
0
 public boolean isSameRM(XAResource xaResource) throws XAException {
   if (!(xaResource instanceof TransactionXaAdapter)) {
     return false;
   }
   TransactionXaAdapter other = (TransactionXaAdapter) xaResource;
   return other.equals(this);
 }