Produces an XML serialisation of this ObjectWrapper instance, that can be deserialised by using the #ObjectWrapper(String) constructor. @see java.lang.Object#toString()
()
| 84 | * @see java.lang.Object#toString() |
| 85 | */ |
| 86 | @Override |
| 87 | public String toString() { |
| 88 | StringWriter out = new StringWriter(); |
| 89 | xstream.toXML(this, out); |
| 90 | return out.toString(); |
| 91 | } |
| 92 | |
| 93 | /** |
| 94 | * Gets the wrapped value. |
no test coverage detected