getPrintWriter
Returns the PrintWriter associated to the JSONStream object.
General format
java.io.PrintWriter getPrintWriter ()
General rules
1. A java.io.PrintWriter object is returned. You can use this method to add text to the content generated by other JSONStream write methods.
Code example
...
configuration section.
repository
    class jsontream  as "com.iscobol.rts.JSONStream"
    class printWriter  as "java.io.PrintWriter"
    .
...
working-storage section.
...
77 objJsonStream object reference jsonStream.
77 objPrintWriter object reference printWriter.
...
procedure division.
...
set objPrintWriter to objJsonStream:>getPrintWriter().