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