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
|
||||
* label and value. This constructor is a helper.
|
||||
*
|
||||
* @param source
|
||||
* the source
|
||||
* @param attributes
|
||||
* the init attributes
|
||||
*/
|
||||
public XMLAttributes(final String... attributes)
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -75,13 +75,16 @@ public class XMLTools
|
|||
|
||||
/**
|
||||
* Indent.
|
||||
*
|
||||
*
|
||||
* @param source
|
||||
* 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
|
||||
|
|
Loading…
Reference in a new issue