mirror of
https://github.com/ethauvin/JSON-java.git
synced 2025-06-17 07:50:52 -07:00
15 lines
No EOL
389 B
Java
15 lines
No EOL
389 B
Java
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!"}
|
|
};
|
|
} |