(strData)
| 31 | } |
| 32 | |
| 33 | parse(strData) { |
| 34 | this.source = new StringSource(strData); |
| 35 | this.parseXml(); |
| 36 | return this.outputBuilder.getOutput(); |
| 37 | } |
| 38 | parseBytesArr(data) { |
| 39 | this.source = new BufferSource(data ); |
| 40 | this.parseXml(); |
no test coverage detected