View Javadoc

1   /*
2    * REPOWEB, repository manager.
3    *
4    * Terms of license - http://opensource.org/licenses/apachepl.php
5    */
6   package org.repoweb.xml;
7   /***
8    * XML utilitary class.
9    */
10  public final class XMLUtil {
11      private XMLUtil() {}
12  
13      public static String format(String xml) {
14          XmlBeautifier beau = new XmlBeautifier();
15          return beau.beautify(xml);
16      }
17  }