mirror of
https://github.com/stleary/JSON-java.git
synced 2026-05-19 00:00:46 -04:00
56d33b8061
* updated tests to support BigDecimal as the backing type for numbers * updated some test resource handling to java7 try-with-resources format * cleaned up some other minor compiler warnings
13 lines
252 B
Java
Executable File
13 lines
252 B
Java
Executable File
package org.json.junit.data;
|
|
|
|
public class MyLocaleBean {
|
|
private final String id = "beanId";
|
|
private final String i = "beanI";
|
|
public String getId() {
|
|
return this.id;
|
|
}
|
|
public String getI() {
|
|
return this.i;
|
|
}
|
|
}
|