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
* label and value. This constructor is a helper.
*
* @param source
* the source
* @param attributes
* the init attributes
*/
public XMLAttributes(final String... attributes)
{

View file

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

View file

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