Fixed Javadoc.
This commit is contained in:
parent
27dd0398ba
commit
998d75008e
3 changed files with 10 additions and 4 deletions
|
@ -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)
|
||||||
{
|
{
|
||||||
|
|
|
@ -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
|
||||||
{
|
{
|
||||||
|
|
|
@ -75,13 +75,16 @@ public class XMLTools
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Indent.
|
* Indent.
|
||||||
*
|
*
|
||||||
* @param source
|
* @param source
|
||||||
* 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
|
||||||
|
|
Loading…
Reference in a new issue