(Element root)
| 36 | } |
| 37 | |
| 38 | public static String encodeToString(Element root) { |
| 39 | StringBuffer sb = new StringBuffer(); |
| 40 | encode(root, sb); |
| 41 | return sb.toString(); |
| 42 | } |
| 43 | |
| 44 | public static void main(String args[]) { |
| 45 | Element root = new Element("family"); |