(String xml)
| 697 | } |
| 698 | |
| 699 | public static String formatXML(String xml) { |
| 700 | Tidy tidy = new Tidy(); |
| 701 | tidy.setXmlTags(true); |
| 702 | tidy.setXmlOut(true); |
| 703 | StringWriter writer = new StringWriter(); |
| 704 | tidy.parse(new StringReader(xml), writer); |
| 705 | return writer.toString(); |
| 706 | } |
| 707 | |
| 708 | public static Attributes getManifestAttributes() { |
| 709 | Attributes result = null; |