mirror of
https://github.com/ethauvin/JSON-java.git
synced 2025-06-17 07:50:52 -07:00
18 lines
No EOL
424 B
Java
18 lines
No EOL
424 B
Java
package org.json.junit;
|
|
|
|
import java.util.*;
|
|
|
|
/**
|
|
* A resource bundle class
|
|
*/
|
|
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!"}
|
|
};
|
|
} |