File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ This library helps you for execute that created validations via [jQuery QueryBu
66You can execute to generated validations basically.
77Generated validation json should be convert to ` Map ` for using executions. ` Gson ` dependency is good for converting to ` Map ` from string.
88
9- ```
9+ ``` xml
1010<dependency >
1111 <groupId >com.google.code.gson</groupId >
1212 <artifactId >gson</artifactId >
@@ -16,7 +16,7 @@ Generated validation json should be convert to `Map` for using executions. `Gso
1616
1717
1818#### Example Validation Json
19- ```
19+ ``` js
2020// String validationString=..
2121 {
2222 " condition" : " OR" ,
@@ -38,7 +38,7 @@ Generated validation json should be convert to `Map` for using executions. `Gso
3838 }
3939```
4040#### Using Validation Execution
41- ```
41+ ``` java
4242// your data object
4343Map yourData = new HashMap<> ();
4444yourData. put(" number" , " 7" );
@@ -55,4 +55,4 @@ boolean result=validationGroup.execute(yourData)
5555assertTrue(result);// result will `true` according to example
5656
5757
58- ```
58+ ```
You can’t perform that action at this time.
0 commit comments