|
|||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| Deserializer.java | - | 100% | 100% | 100% |
|
||||||||||||||
| 1 | package net.sf.crispy.impl.rest; | |
| 2 | ||
| 3 | ||
| 4 | public class Deserializer { | |
| 5 | ||
| 6 | ||
| 7 | ||
| 8 | 53 | public static Object deserialize(String pvXmlStr) throws Exception { |
| 9 | 53 | RestContentHandler lvHandler = new RestContentHandler(); |
| 10 | 53 | new Parser().parse(pvXmlStr, lvHandler); |
| 11 | 53 | return lvHandler.getResult(); |
| 12 | } | |
| 13 | ||
| 14 | ||
| 15 | ||
| 16 | } |
|
||||||||||