mirror of
https://github.com/stleary/JSON-java.git
synced 2026-01-24 00:03:17 -05:00
13 lines
237 B
Java
Executable File
13 lines
237 B
Java
Executable File
package org.json.junit;
|
|
|
|
public class MyLocaleBean {
|
|
private final String id = "beanId";
|
|
private final String i = "beanI";
|
|
public String getId() {
|
|
return id;
|
|
}
|
|
public String getI() {
|
|
return i;
|
|
}
|
|
}
|