(JSONParser parser)
| 81 | final JSONParser parser; |
| 82 | |
| 83 | public ObjectBuilder(JSONParser parser) throws IOException { |
| 84 | this.parser = parser; |
| 85 | if (parser.lastEvent() == 0) parser.nextEvent(); |
| 86 | } |
| 87 | |
| 88 | public Object getVal() throws IOException { |
| 89 | int ev = parser.lastEvent(); |