Subversion Repositories distributed

Rev

Rev 5 | Blame | Compare with Previous | Last modification | View Log | RSS feed

  1. package de.viathinksoft.immortal.gen2.math;
  2.  
  3. import java.math.BigInteger;
  4.  
  5. public class DivisionAndRemainderResult {
  6.        
  7.         private BigInteger divisionResult;
  8.         private BigInteger remainder;
  9.  
  10.         public DivisionAndRemainderResult(BigInteger divisionResult,
  11.                         BigInteger remainder) {
  12.                 super();
  13.                 this.divisionResult = divisionResult;
  14.                 this.remainder = remainder;
  15.         }
  16.  
  17.         public BigInteger getDivisionResult() {
  18.                 return divisionResult;
  19.         }
  20.  
  21.         public BigInteger getRemainder() {
  22.                 return remainder;
  23.         }
  24.  
  25. }
  26.