Subversion Repositories distributed

Rev

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

Rev Author Line No. Line
30 daniel-mar 1
package de.viathinksoft.immortal.gen2.math;
5 daniel-mar 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
}