Skip to content
Snippets Groups Projects
Commit a56bfe51 authored by Noah Heuser's avatar Noah Heuser
Browse files

added JSON Library to project

parent 80a8ed9b
No related branches found
No related tags found
No related merge requests found
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<classpath> <classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER">
<attributes> <attributes>
<attribute name="module" value="true"/> <attribute name="module" value="true"/>
</attributes> </attributes>
</classpathentry> </classpathentry>
<classpathentry kind="src" path="src"/> <classpathentry kind="lib" path="D:/Downloads/json-20140107.jar">
<attributes>
<attribute name="module" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="output" path="bin"/> <classpathentry kind="output" path="bin"/>
</classpath> </classpath>
package json;
import java.util.List;
import java.util.Map;
import org.json.JSONArray;
public class GrammarToJSON {
private String createJSONGrammar(Map<String, List<List<String>>> rules) {
JSONArray var = new JSONArray();
return var.toString();
}
}
module GrammarGenerator { module GrammarGenerator {
requires json;
} }
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment