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_fr.java
2012-01-30 10:15:05 -05:00

28 lines
No EOL
665 B
Java

/*
* File: SampleResourceBundle_fr.java
* Author: JSON.org
*/
package org.json.tests;
import java.util.*;
/**
* The Class SampleResourceBundle_fr.
*/
public class SampleResourceBundle_fr extends ListResourceBundle {
/* (non-Javadoc)
* @see java.util.ListResourceBundle#getContents()
*/
@Override
public Object[][] getContents() {
return contents;
}
/** The contents. */
private Object[][] contents = {
{ "ASCII", "Number that represent chraracters" },
{ "JAVA", "The language you are running to see this" },
{ "JSON", "What are we testing?" },
};
}