1
0
Fork 0
mirror of https://github.com/ethauvin/JSON-java.git synced 2025-06-17 07:50:52 -07:00
JSON-java/tests/SampleResourceBundle_en_US.java
2012-01-30 10:15:05 -05:00

29 lines
No EOL
715 B
Java

/*
* File: SampleResourceBundle_en_US.java
* Author: JSON.org
*/
package org.json.tests;
import java.util.*;
/**
* The Class SampleResourceBundle_en_US.
*/
public class SampleResourceBundle_en_US extends ListResourceBundle {
/* (non-Javadoc)
* @see java.util.ListResourceBundle#getContents()
*/
@Override
public Object[][] getContents() {
return contents;
}
/** The contents. */
private Object[][] contents = {
{ "ASCII", "American Standard Code for Information Interchange" },
{ "JAVA.desc", "Just Another Vague Acronym" },
{ "JAVA.data", "Sweet language" },
{ "JSON", "JavaScript Object Notation" },
};
}