├── .gitignore ├── LICENSE.md ├── Procfile ├── app ├── controllers │ └── Application.java ├── ext │ └── ApexExtensions.java ├── models │ ├── ApexClass.java │ ├── ApexList.java │ ├── ApexMember.java │ ├── ApexPrimitive.java │ ├── ApexType.java │ └── TypeFactory.java └── views │ ├── Application │ ├── index.html │ ├── makeApex.txt │ ├── makeApexTest.txt │ ├── makeApexWithParse.txt │ └── makeApexWithParseTest.txt │ ├── errors │ ├── 404.html │ └── 500.html │ └── main.html ├── conf ├── application.conf ├── dependencies.yml ├── messages └── routes ├── eclipse ├── .classpath ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ └── org.eclipse.jdt.core.prefs ├── Connect JPDA to json2apex.launch ├── Test json2apex.launch └── json2apex.launch ├── integration-test ├── basic_object.json ├── beatbox.py ├── beatbox_six.py ├── class_merging.json ├── dot_in_fieldname.json ├── dot_in_objectname.json ├── field_array.json ├── hyphen_in_fieldname.json ├── hyphen_in_objectname.json ├── int_promotion.json ├── issue_23.json ├── primitive_array.json ├── results │ ├── basic_object.json.False.JSON2ApexIntegration.apxc │ ├── basic_object.json.False.JSON2ApexIntegration_Test.apxc │ ├── basic_object.json.True.JSON2ApexIntegration.apxc │ ├── basic_object.json.True.JSON2ApexIntegration_Test.apxc │ ├── class_merging.json.False.JSON2ApexIntegration.apxc │ ├── class_merging.json.False.JSON2ApexIntegration_Test.apxc │ ├── class_merging.json.True.JSON2ApexIntegration.apxc │ ├── class_merging.json.True.JSON2ApexIntegration_Test.apxc │ ├── dot_in_fieldname.json.False.JSON2ApexIntegration.apxc │ ├── dot_in_fieldname.json.False.JSON2ApexIntegration_Test.apxc │ ├── dot_in_fieldname.json.True.JSON2ApexIntegration.apxc │ ├── dot_in_fieldname.json.True.JSON2ApexIntegration_Test.apxc │ ├── dot_in_objectname.json.False.JSON2ApexIntegration.apxc │ ├── dot_in_objectname.json.False.JSON2ApexIntegration_Test.apxc │ ├── dot_in_objectname.json.True.JSON2ApexIntegration.apxc │ ├── dot_in_objectname.json.True.JSON2ApexIntegration_Test.apxc │ ├── field_array.json.False.JSON2ApexIntegration.apxc │ ├── field_array.json.False.JSON2ApexIntegration_Test.apxc │ ├── field_array.json.True.JSON2ApexIntegration.apxc │ ├── field_array.json.True.JSON2ApexIntegration_Test.apxc │ ├── hyphen_in_fieldname.json.False.JSON2ApexIntegration.apxc │ ├── hyphen_in_fieldname.json.False.JSON2ApexIntegration_Test.apxc │ ├── hyphen_in_fieldname.json.True.JSON2ApexIntegration.apxc │ ├── hyphen_in_fieldname.json.True.JSON2ApexIntegration_Test.apxc │ ├── hyphen_in_objectname.json.False.JSON2ApexIntegration.apxc │ ├── hyphen_in_objectname.json.False.JSON2ApexIntegration_Test.apxc │ ├── hyphen_in_objectname.json.True.JSON2ApexIntegration.apxc │ ├── hyphen_in_objectname.json.True.JSON2ApexIntegration_Test.apxc │ ├── int_promotion.json.False.JSON2ApexIntegration.apxc │ ├── int_promotion.json.False.JSON2ApexIntegration_Test.apxc │ ├── int_promotion.json.True.JSON2ApexIntegration.apxc │ ├── int_promotion.json.True.JSON2ApexIntegration_Test.apxc │ ├── issue_23.json.False.JSON2ApexIntegration.apxc │ ├── issue_23.json.False.JSON2ApexIntegration_Test.apxc │ ├── issue_23.json.True.JSON2ApexIntegration.apxc │ ├── issue_23.json.True.JSON2ApexIntegration_Test.apxc │ ├── primitive_array.json.False.JSON2ApexIntegration.apxc │ ├── primitive_array.json.False.JSON2ApexIntegration_Test.apxc │ ├── primitive_array.json.True.JSON2ApexIntegration.apxc │ ├── primitive_array.json.True.JSON2ApexIntegration_Test.apxc │ ├── top_level_array.json.False.JSON2ApexIntegration.apxc │ ├── top_level_array.json.False.JSON2ApexIntegration_Test.apxc │ ├── top_level_array.json.True.JSON2ApexIntegration.apxc │ ├── top_level_array.json.True.JSON2ApexIntegration_Test.apxc │ ├── top_level_prim_array.json.False.JSON2ApexIntegration.apxc │ ├── top_level_prim_array.json.False.JSON2ApexIntegration_Test.apxc │ ├── top_level_prim_array.json.True.JSON2ApexIntegration.apxc │ ├── top_level_prim_array.json.True.JSON2ApexIntegration_Test.apxc │ ├── types.json.False.JSON2ApexIntegration.apxc │ ├── types.json.False.JSON2ApexIntegration_Test.apxc │ ├── types.json.True.JSON2ApexIntegration.apxc │ ├── types.json.True.JSON2ApexIntegration_Test.apxc │ ├── underscore_in_classname.json.False.JSON2ApexIntegration.apxc │ ├── underscore_in_classname.json.False.JSON2ApexIntegration_Test.apxc │ ├── underscore_in_classname.json.True.JSON2ApexIntegration.apxc │ ├── underscore_in_classname.json.True.JSON2ApexIntegration_Test.apxc │ ├── underscore_in_fieldname.json.False.JSON2ApexIntegration.apxc │ ├── underscore_in_fieldname.json.False.JSON2ApexIntegration_Test.apxc │ ├── underscore_in_fieldname.json.True.JSON2ApexIntegration.apxc │ └── underscore_in_fieldname.json.True.JSON2ApexIntegration_Test.apxc ├── tests.py ├── top_level_array.json ├── top_level_prim_array.json ├── types.json ├── underscore_in_classname.json ├── underscore_in_fieldname.json └── xmltramp.py ├── lib ├── jackson-core-asl-1.6.1.jar └── jackson-mapper-asl-1.6.1.jar ├── public ├── images │ └── favicon.png └── stylesheets │ └── main.css ├── readme.md ├── system.properties └── test ├── Application.test.html ├── ApplicationTest.java ├── BasicTest.java ├── data.yml └── models └── ListsTest.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: play run --http.port=$PORT $PLAY_OPTS -------------------------------------------------------------------------------- /app/controllers/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/app/controllers/Application.java -------------------------------------------------------------------------------- /app/ext/ApexExtensions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/app/ext/ApexExtensions.java -------------------------------------------------------------------------------- /app/models/ApexClass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/app/models/ApexClass.java -------------------------------------------------------------------------------- /app/models/ApexList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/app/models/ApexList.java -------------------------------------------------------------------------------- /app/models/ApexMember.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/app/models/ApexMember.java -------------------------------------------------------------------------------- /app/models/ApexPrimitive.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/app/models/ApexPrimitive.java -------------------------------------------------------------------------------- /app/models/ApexType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/app/models/ApexType.java -------------------------------------------------------------------------------- /app/models/TypeFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/app/models/TypeFactory.java -------------------------------------------------------------------------------- /app/views/Application/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/app/views/Application/index.html -------------------------------------------------------------------------------- /app/views/Application/makeApex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/app/views/Application/makeApex.txt -------------------------------------------------------------------------------- /app/views/Application/makeApexTest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/app/views/Application/makeApexTest.txt -------------------------------------------------------------------------------- /app/views/Application/makeApexWithParse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/app/views/Application/makeApexWithParse.txt -------------------------------------------------------------------------------- /app/views/Application/makeApexWithParseTest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/app/views/Application/makeApexWithParseTest.txt -------------------------------------------------------------------------------- /app/views/errors/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/app/views/errors/404.html -------------------------------------------------------------------------------- /app/views/errors/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/app/views/errors/500.html -------------------------------------------------------------------------------- /app/views/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/app/views/main.html -------------------------------------------------------------------------------- /conf/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/conf/application.conf -------------------------------------------------------------------------------- /conf/dependencies.yml: -------------------------------------------------------------------------------- 1 | # Application dependencies 2 | 3 | require: 4 | - play 1.3.1 5 | -------------------------------------------------------------------------------- /conf/messages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/conf/messages -------------------------------------------------------------------------------- /conf/routes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/conf/routes -------------------------------------------------------------------------------- /eclipse/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/eclipse/.classpath -------------------------------------------------------------------------------- /eclipse/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/eclipse/.project -------------------------------------------------------------------------------- /eclipse/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Tue Feb 17 18:35:42 CET 2009 2 | eclipse.preferences.version=1 3 | encoding/=UTF-8 4 | -------------------------------------------------------------------------------- /eclipse/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/eclipse/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /eclipse/Connect JPDA to json2apex.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/eclipse/Connect JPDA to json2apex.launch -------------------------------------------------------------------------------- /eclipse/Test json2apex.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/eclipse/Test json2apex.launch -------------------------------------------------------------------------------- /eclipse/json2apex.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/eclipse/json2apex.launch -------------------------------------------------------------------------------- /integration-test/basic_object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/basic_object.json -------------------------------------------------------------------------------- /integration-test/beatbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/beatbox.py -------------------------------------------------------------------------------- /integration-test/beatbox_six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/beatbox_six.py -------------------------------------------------------------------------------- /integration-test/class_merging.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/class_merging.json -------------------------------------------------------------------------------- /integration-test/dot_in_fieldname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/dot_in_fieldname.json -------------------------------------------------------------------------------- /integration-test/dot_in_objectname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/dot_in_objectname.json -------------------------------------------------------------------------------- /integration-test/field_array.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/field_array.json -------------------------------------------------------------------------------- /integration-test/hyphen_in_fieldname.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo-bar": 5 3 | } -------------------------------------------------------------------------------- /integration-test/hyphen_in_objectname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/hyphen_in_objectname.json -------------------------------------------------------------------------------- /integration-test/int_promotion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/int_promotion.json -------------------------------------------------------------------------------- /integration-test/issue_23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/issue_23.json -------------------------------------------------------------------------------- /integration-test/primitive_array.json: -------------------------------------------------------------------------------- 1 | { 2 | "numbers": [1.1, 2.2, 3.3 ] 3 | } -------------------------------------------------------------------------------- /integration-test/results/basic_object.json.False.JSON2ApexIntegration.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/basic_object.json.False.JSON2ApexIntegration.apxc -------------------------------------------------------------------------------- /integration-test/results/basic_object.json.False.JSON2ApexIntegration_Test.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/basic_object.json.False.JSON2ApexIntegration_Test.apxc -------------------------------------------------------------------------------- /integration-test/results/basic_object.json.True.JSON2ApexIntegration.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/basic_object.json.True.JSON2ApexIntegration.apxc -------------------------------------------------------------------------------- /integration-test/results/basic_object.json.True.JSON2ApexIntegration_Test.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/basic_object.json.True.JSON2ApexIntegration_Test.apxc -------------------------------------------------------------------------------- /integration-test/results/class_merging.json.False.JSON2ApexIntegration.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/class_merging.json.False.JSON2ApexIntegration.apxc -------------------------------------------------------------------------------- /integration-test/results/class_merging.json.False.JSON2ApexIntegration_Test.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/class_merging.json.False.JSON2ApexIntegration_Test.apxc -------------------------------------------------------------------------------- /integration-test/results/class_merging.json.True.JSON2ApexIntegration.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/class_merging.json.True.JSON2ApexIntegration.apxc -------------------------------------------------------------------------------- /integration-test/results/class_merging.json.True.JSON2ApexIntegration_Test.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/class_merging.json.True.JSON2ApexIntegration_Test.apxc -------------------------------------------------------------------------------- /integration-test/results/dot_in_fieldname.json.False.JSON2ApexIntegration.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/dot_in_fieldname.json.False.JSON2ApexIntegration.apxc -------------------------------------------------------------------------------- /integration-test/results/dot_in_fieldname.json.False.JSON2ApexIntegration_Test.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/dot_in_fieldname.json.False.JSON2ApexIntegration_Test.apxc -------------------------------------------------------------------------------- /integration-test/results/dot_in_fieldname.json.True.JSON2ApexIntegration.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/dot_in_fieldname.json.True.JSON2ApexIntegration.apxc -------------------------------------------------------------------------------- /integration-test/results/dot_in_fieldname.json.True.JSON2ApexIntegration_Test.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/dot_in_fieldname.json.True.JSON2ApexIntegration_Test.apxc -------------------------------------------------------------------------------- /integration-test/results/dot_in_objectname.json.False.JSON2ApexIntegration.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/dot_in_objectname.json.False.JSON2ApexIntegration.apxc -------------------------------------------------------------------------------- /integration-test/results/dot_in_objectname.json.False.JSON2ApexIntegration_Test.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/dot_in_objectname.json.False.JSON2ApexIntegration_Test.apxc -------------------------------------------------------------------------------- /integration-test/results/dot_in_objectname.json.True.JSON2ApexIntegration.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/dot_in_objectname.json.True.JSON2ApexIntegration.apxc -------------------------------------------------------------------------------- /integration-test/results/dot_in_objectname.json.True.JSON2ApexIntegration_Test.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/dot_in_objectname.json.True.JSON2ApexIntegration_Test.apxc -------------------------------------------------------------------------------- /integration-test/results/field_array.json.False.JSON2ApexIntegration.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/field_array.json.False.JSON2ApexIntegration.apxc -------------------------------------------------------------------------------- /integration-test/results/field_array.json.False.JSON2ApexIntegration_Test.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/field_array.json.False.JSON2ApexIntegration_Test.apxc -------------------------------------------------------------------------------- /integration-test/results/field_array.json.True.JSON2ApexIntegration.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/field_array.json.True.JSON2ApexIntegration.apxc -------------------------------------------------------------------------------- /integration-test/results/field_array.json.True.JSON2ApexIntegration_Test.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/field_array.json.True.JSON2ApexIntegration_Test.apxc -------------------------------------------------------------------------------- /integration-test/results/hyphen_in_fieldname.json.False.JSON2ApexIntegration.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/hyphen_in_fieldname.json.False.JSON2ApexIntegration.apxc -------------------------------------------------------------------------------- /integration-test/results/hyphen_in_fieldname.json.False.JSON2ApexIntegration_Test.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/hyphen_in_fieldname.json.False.JSON2ApexIntegration_Test.apxc -------------------------------------------------------------------------------- /integration-test/results/hyphen_in_fieldname.json.True.JSON2ApexIntegration.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/hyphen_in_fieldname.json.True.JSON2ApexIntegration.apxc -------------------------------------------------------------------------------- /integration-test/results/hyphen_in_fieldname.json.True.JSON2ApexIntegration_Test.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/hyphen_in_fieldname.json.True.JSON2ApexIntegration_Test.apxc -------------------------------------------------------------------------------- /integration-test/results/hyphen_in_objectname.json.False.JSON2ApexIntegration.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/hyphen_in_objectname.json.False.JSON2ApexIntegration.apxc -------------------------------------------------------------------------------- /integration-test/results/hyphen_in_objectname.json.False.JSON2ApexIntegration_Test.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/hyphen_in_objectname.json.False.JSON2ApexIntegration_Test.apxc -------------------------------------------------------------------------------- /integration-test/results/hyphen_in_objectname.json.True.JSON2ApexIntegration.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/hyphen_in_objectname.json.True.JSON2ApexIntegration.apxc -------------------------------------------------------------------------------- /integration-test/results/hyphen_in_objectname.json.True.JSON2ApexIntegration_Test.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/hyphen_in_objectname.json.True.JSON2ApexIntegration_Test.apxc -------------------------------------------------------------------------------- /integration-test/results/int_promotion.json.False.JSON2ApexIntegration.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/int_promotion.json.False.JSON2ApexIntegration.apxc -------------------------------------------------------------------------------- /integration-test/results/int_promotion.json.False.JSON2ApexIntegration_Test.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/int_promotion.json.False.JSON2ApexIntegration_Test.apxc -------------------------------------------------------------------------------- /integration-test/results/int_promotion.json.True.JSON2ApexIntegration.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/int_promotion.json.True.JSON2ApexIntegration.apxc -------------------------------------------------------------------------------- /integration-test/results/int_promotion.json.True.JSON2ApexIntegration_Test.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/int_promotion.json.True.JSON2ApexIntegration_Test.apxc -------------------------------------------------------------------------------- /integration-test/results/issue_23.json.False.JSON2ApexIntegration.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/issue_23.json.False.JSON2ApexIntegration.apxc -------------------------------------------------------------------------------- /integration-test/results/issue_23.json.False.JSON2ApexIntegration_Test.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/issue_23.json.False.JSON2ApexIntegration_Test.apxc -------------------------------------------------------------------------------- /integration-test/results/issue_23.json.True.JSON2ApexIntegration.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/issue_23.json.True.JSON2ApexIntegration.apxc -------------------------------------------------------------------------------- /integration-test/results/issue_23.json.True.JSON2ApexIntegration_Test.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/issue_23.json.True.JSON2ApexIntegration_Test.apxc -------------------------------------------------------------------------------- /integration-test/results/primitive_array.json.False.JSON2ApexIntegration.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/primitive_array.json.False.JSON2ApexIntegration.apxc -------------------------------------------------------------------------------- /integration-test/results/primitive_array.json.False.JSON2ApexIntegration_Test.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/primitive_array.json.False.JSON2ApexIntegration_Test.apxc -------------------------------------------------------------------------------- /integration-test/results/primitive_array.json.True.JSON2ApexIntegration.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/primitive_array.json.True.JSON2ApexIntegration.apxc -------------------------------------------------------------------------------- /integration-test/results/primitive_array.json.True.JSON2ApexIntegration_Test.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/primitive_array.json.True.JSON2ApexIntegration_Test.apxc -------------------------------------------------------------------------------- /integration-test/results/top_level_array.json.False.JSON2ApexIntegration.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/top_level_array.json.False.JSON2ApexIntegration.apxc -------------------------------------------------------------------------------- /integration-test/results/top_level_array.json.False.JSON2ApexIntegration_Test.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/top_level_array.json.False.JSON2ApexIntegration_Test.apxc -------------------------------------------------------------------------------- /integration-test/results/top_level_array.json.True.JSON2ApexIntegration.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/top_level_array.json.True.JSON2ApexIntegration.apxc -------------------------------------------------------------------------------- /integration-test/results/top_level_array.json.True.JSON2ApexIntegration_Test.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/top_level_array.json.True.JSON2ApexIntegration_Test.apxc -------------------------------------------------------------------------------- /integration-test/results/top_level_prim_array.json.False.JSON2ApexIntegration.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/top_level_prim_array.json.False.JSON2ApexIntegration.apxc -------------------------------------------------------------------------------- /integration-test/results/top_level_prim_array.json.False.JSON2ApexIntegration_Test.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/top_level_prim_array.json.False.JSON2ApexIntegration_Test.apxc -------------------------------------------------------------------------------- /integration-test/results/top_level_prim_array.json.True.JSON2ApexIntegration.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/top_level_prim_array.json.True.JSON2ApexIntegration.apxc -------------------------------------------------------------------------------- /integration-test/results/top_level_prim_array.json.True.JSON2ApexIntegration_Test.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/top_level_prim_array.json.True.JSON2ApexIntegration_Test.apxc -------------------------------------------------------------------------------- /integration-test/results/types.json.False.JSON2ApexIntegration.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/types.json.False.JSON2ApexIntegration.apxc -------------------------------------------------------------------------------- /integration-test/results/types.json.False.JSON2ApexIntegration_Test.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/types.json.False.JSON2ApexIntegration_Test.apxc -------------------------------------------------------------------------------- /integration-test/results/types.json.True.JSON2ApexIntegration.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/types.json.True.JSON2ApexIntegration.apxc -------------------------------------------------------------------------------- /integration-test/results/types.json.True.JSON2ApexIntegration_Test.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/types.json.True.JSON2ApexIntegration_Test.apxc -------------------------------------------------------------------------------- /integration-test/results/underscore_in_classname.json.False.JSON2ApexIntegration.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/underscore_in_classname.json.False.JSON2ApexIntegration.apxc -------------------------------------------------------------------------------- /integration-test/results/underscore_in_classname.json.False.JSON2ApexIntegration_Test.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/underscore_in_classname.json.False.JSON2ApexIntegration_Test.apxc -------------------------------------------------------------------------------- /integration-test/results/underscore_in_classname.json.True.JSON2ApexIntegration.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/underscore_in_classname.json.True.JSON2ApexIntegration.apxc -------------------------------------------------------------------------------- /integration-test/results/underscore_in_classname.json.True.JSON2ApexIntegration_Test.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/underscore_in_classname.json.True.JSON2ApexIntegration_Test.apxc -------------------------------------------------------------------------------- /integration-test/results/underscore_in_fieldname.json.False.JSON2ApexIntegration.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/underscore_in_fieldname.json.False.JSON2ApexIntegration.apxc -------------------------------------------------------------------------------- /integration-test/results/underscore_in_fieldname.json.False.JSON2ApexIntegration_Test.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/underscore_in_fieldname.json.False.JSON2ApexIntegration_Test.apxc -------------------------------------------------------------------------------- /integration-test/results/underscore_in_fieldname.json.True.JSON2ApexIntegration.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/underscore_in_fieldname.json.True.JSON2ApexIntegration.apxc -------------------------------------------------------------------------------- /integration-test/results/underscore_in_fieldname.json.True.JSON2ApexIntegration_Test.apxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/results/underscore_in_fieldname.json.True.JSON2ApexIntegration_Test.apxc -------------------------------------------------------------------------------- /integration-test/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/tests.py -------------------------------------------------------------------------------- /integration-test/top_level_array.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/top_level_array.json -------------------------------------------------------------------------------- /integration-test/top_level_prim_array.json: -------------------------------------------------------------------------------- 1 | [ 1.1, 2.2, 3.3 ] 2 | -------------------------------------------------------------------------------- /integration-test/types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/types.json -------------------------------------------------------------------------------- /integration-test/underscore_in_classname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/underscore_in_classname.json -------------------------------------------------------------------------------- /integration-test/underscore_in_fieldname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/underscore_in_fieldname.json -------------------------------------------------------------------------------- /integration-test/xmltramp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/integration-test/xmltramp.py -------------------------------------------------------------------------------- /lib/jackson-core-asl-1.6.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/lib/jackson-core-asl-1.6.1.jar -------------------------------------------------------------------------------- /lib/jackson-mapper-asl-1.6.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/lib/jackson-mapper-asl-1.6.1.jar -------------------------------------------------------------------------------- /public/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/public/images/favicon.png -------------------------------------------------------------------------------- /public/stylesheets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/public/stylesheets/main.css -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/readme.md -------------------------------------------------------------------------------- /system.properties: -------------------------------------------------------------------------------- 1 | java.runtime.version=1.8 -------------------------------------------------------------------------------- /test/Application.test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/test/Application.test.html -------------------------------------------------------------------------------- /test/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/test/ApplicationTest.java -------------------------------------------------------------------------------- /test/BasicTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/test/BasicTest.java -------------------------------------------------------------------------------- /test/data.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/test/data.yml -------------------------------------------------------------------------------- /test/models/ListsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/json2apex/HEAD/test/models/ListsTest.java --------------------------------------------------------------------------------