mirror of
https://github.com/ethauvin/JSON-java.git
synced 2025-06-17 07:50:52 -07:00
11 lines
No EOL
225 B
Java
11 lines
No EOL
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();
|
|
} |