Subversion Repositories distributed

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
5 daniel-mar 1
package de.viathinksoft.immortable.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
}