mirror of
https://github.com/ethauvin/JSON-java.git
synced 2025-06-17 16:00:51 -07:00
in progress
This commit is contained in:
parent
2219b5919b
commit
22d5fd3aed
4 changed files with 215 additions and 1 deletions
15
StringsResourceBundle.java
Normal file
15
StringsResourceBundle.java
Normal file
|
@ -0,0 +1,15 @@
|
|||
package org.json.junit;
|
||||
|
||||
import java.util.*;
|
||||
|
||||
public class StringsResourceBundle extends ListResourceBundle {
|
||||
public Object[][] getContents() {
|
||||
return contents;
|
||||
}
|
||||
static final Object[][] contents = {
|
||||
{"greetings.hello", "Hello, "},
|
||||
{"greetings.world", "World!"},
|
||||
{"farewells.later", "Later, "},
|
||||
{"farewells.gator", "Alligator!"}
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue