Fixed Javadoc.

This commit is contained in:
Christian P. MOMON 2018-06-04 10:55:07 +02:00
parent 27dd0398ba
commit 998d75008e
3 changed files with 10 additions and 4 deletions

View file

@ -79,8 +79,8 @@ public class XMLAttributes extends HashMap<String, XMLAttribute> implements Iter
* Instantiates a new XML attributes from a string array. Strings are series of * Instantiates a new XML attributes from a string array. Strings are series of
* label and value. This constructor is a helper. * label and value. This constructor is a helper.
* *
* @param source * @param attributes
* the source * the init attributes
*/ */
public XMLAttributes(final String... attributes) public XMLAttributes(final String... attributes)
{ {

View file

@ -128,8 +128,12 @@ public class XMLReader
} }
/** /**
* Instantiates a new XML reader.
*
* @param source * @param source
* the source
* @throws XMLStreamException * @throws XMLStreamException
* the XML stream exception
*/ */
public XMLReader(final String source) throws XMLStreamException public XMLReader(final String source) throws XMLStreamException
{ {

View file

@ -80,8 +80,11 @@ public class XMLTools
* the source * the source
* @return the string * @return the string
* @throws XMLStreamException * @throws XMLStreamException
* the XML stream exception
* @throws XMLBadFormatException * @throws XMLBadFormatException
* the XML bad format exception
* @throws IOException * @throws IOException
* Signals that an I/O exception has occurred.
*/ */
public static String indent(final String source) throws XMLStreamException, XMLBadFormatException, IOException public static String indent(final String source) throws XMLStreamException, XMLBadFormatException, IOException
{ {
@ -324,7 +327,6 @@ public class XMLTools
* the in * the in
* @return the string * @return the string
* @throws IOException * @throws IOException
* @throws Exception
* the exception * the exception
*/ */
public static String readTag(final BufferedReader in) throws IOException public static String readTag(final BufferedReader in) throws IOException