| 56 | | lc = Context.getLogicService().parseString("EXISTS \"CD4 COUNT\" > 200;"); |
|---|
| 57 | | System.out.println("\nInput: EXISTS \"CD4 COUNT\" > 200;\nOutput: " + lc.toString()); |
|---|
| 58 | | lc = Context.getLogicService().parseString("\"CD4 COUNT\";"); |
|---|
| 59 | | System.out.println("\nInput: \"CD4 COUNT\";\nOutput:" + lc.toString()); |
|---|
| 60 | | lc = Context.getLogicService().parseString("LAST \"CD4 COUNT\" > 200;"); |
|---|
| 61 | | System.out.println("\nInput: LAST \"CD4 COUNT\" > 200;\nOutput: " + lc.toString()); |
|---|
| | 56 | lc = Context.getLogicService().parseString("EXISTS \"CD4 COUNT\" > 200"); |
|---|
| | 57 | System.out.println("\nInput: EXISTS \"CD4 COUNT\" > 200\nOutput: " + lc.toString()); |
|---|
| | 58 | lc = Context.getLogicService().parseString("\"CD4COUNT\""); |
|---|
| | 59 | System.out.println("\nInput: \"CD4COUNT\"\nOutput:" + lc.toString()); |
|---|
| | 60 | lc = Context.getLogicService().parseString("LAST \"CD4 COUNT\" > 200.534;"); |
|---|
| | 61 | System.out.println("\nInput: LAST \"CD4 COUNT\" > 200.534;\nOutput: " + lc.toString()); |
|---|