mirror of
https://github.com/fankes/JSON-java-compat.git
synced 2025-09-07 03:06:03 +08:00
in progress
This commit is contained in:
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!"}
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user