Subversion Repositories distributed

Compare Revisions

No changes between revisions

Regard whitespace Rev 29 → Rev 30

/ViaThinkSoft Distributed/src/de/viathinksoft/immortal/gen2/math/DivisionAndRemainderResult.java
0,0 → 1,25
package de.viathinksoft.immortal.gen2.math;
 
import java.math.BigInteger;
 
public class DivisionAndRemainderResult {
private BigInteger divisionResult;
private BigInteger remainder;
 
public DivisionAndRemainderResult(BigInteger divisionResult,
BigInteger remainder) {
super();
this.divisionResult = divisionResult;
this.remainder = remainder;
}
 
public BigInteger getDivisionResult() {
return divisionResult;
}
 
public BigInteger getRemainder() {
return remainder;
}
 
}
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property