mirror of
https://github.com/fankes/JSON-java-compat.git
synced 2025-09-06 10:45:23 +08:00
11 lines
225 B
Java
11 lines
225 B
Java
package org.json.junit;
|
|
|
|
import java.math.*;
|
|
|
|
/**
|
|
* Used in testing when a Bean containing big numbers is needed
|
|
*/
|
|
interface MyBigNumberBean {
|
|
public BigInteger getBigInteger();
|
|
public BigDecimal getBigDecimal();
|
|
} |