mirror of
https://github.com/stleary/JSON-java.git
synced 2025-08-03 11:25:30 -04: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();
|
|
} |