1
0
Fork 0
mirror of https://github.com/ethauvin/JSON-java.git synced 2025-06-17 07:50:52 -07:00
JSON-java/MyBigNumberBean.java
2015-12-29 17:56:43 -06:00

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();
}