From 81289d52a0b771de363a361c1d04ae3146e5d8cf Mon Sep 17 00:00:00 2001 From: Ben Linskey Date: Tue, 17 Dec 2013 09:15:23 -0500 Subject: Replace tabs with spaces. This commit also adds a missing documentation comment for the GreekTextParser class. --- src/com/benlinskey/grdbc/SyntaxParser.java | 52 ++++++++++++++++-------------- 1 file changed, 28 insertions(+), 24 deletions(-) (limited to 'src/com/benlinskey/grdbc/SyntaxParser.java') diff --git a/src/com/benlinskey/grdbc/SyntaxParser.java b/src/com/benlinskey/grdbc/SyntaxParser.java index 811ca2f..9745af3 100644 --- a/src/com/benlinskey/grdbc/SyntaxParser.java +++ b/src/com/benlinskey/grdbc/SyntaxParser.java @@ -24,31 +24,35 @@ import org.xml.sax.SAXException; /** * Parses XML from the Overview of Greek Syntax text and converts Beta Code to * Greek characters. + * * @author Ben Linskey - * + * */ public class SyntaxParser extends GreekTextParser { - /** - * Class constructor. - * @param xml the XML to parse - * @throws ParserConfigurationException - * @throws SAXException - * @throws IOException - */ - public SyntaxParser(String xml) - throws ParserConfigurationException, SAXException, IOException { - super(xml); - } - - /** - * Returns the XML for this section, with all Beta Code converted to Greek - * characters. - * @return the XML for this section with all Beta Code converted to Greek - * characters - */ - public String transcode() { - transcodeInElements("quote"); - transcodeInElements("foreign"); - return getUpdatedXML(); - } + /** + * Class constructor. + * + * @param xml + * the XML to parse + * @throws ParserConfigurationException + * @throws SAXException + * @throws IOException + */ + public SyntaxParser(String xml) throws ParserConfigurationException, + SAXException, IOException { + super(xml); + } + + /** + * Returns the XML for this section, with all Beta Code converted to Greek + * characters. + * + * @return the XML for this section with all Beta Code converted to Greek + * characters + */ + public String transcode() { + transcodeInElements("quote"); + transcodeInElements("foreign"); + return getUpdatedXML(); + } } -- cgit v1.2.3