PageRenderTime 49ms CodeModel.GetById 24ms RepoModel.GetById 0ms app.codeStats 0ms

/bundles/plugins-trunk/XML/xml/indent/XmlBeautifier.java

#
Java | 40 lines | 13 code | 5 blank | 22 comment | 0 complexity | 9f9ae18cf64884e3a9e07b237604f9a5 MD5 | raw file
Possible License(s): BSD-3-Clause, AGPL-1.0, Apache-2.0, LGPL-2.0, LGPL-3.0, GPL-2.0, CC-BY-SA-3.0, LGPL-2.1, GPL-3.0, MPL-2.0-no-copyleft-exception, IPL-1.0
  1. /*
  2. * XmlIndenterPlugin.java - EditPlugin implementation for the XML Indenter plugin
  3. *
  4. * Copyright (c) 2003 Robert McKinnon
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License
  8. * as published by the Free Software Foundation; either version 2
  9. * of the License, or any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  19. */
  20. package xml.indent;
  21. import beauty.beautifiers.Beautifier;
  22. import beauty.parsers.ParserException;
  23. /**
  24. * danson, Added to integrate with Beauty plugin.
  25. */
  26. public class XmlBeautifier extends Beautifier {
  27. public String beautify(String text) throws ParserException {
  28. try {
  29. return XmlIndenterPlugin.indent(text, getIndentWidth(), !getUseSoftTabs());
  30. }
  31. catch(Exception e) {
  32. throw new ParserException(e);
  33. }
  34. }
  35. }