Fixed Javadoc.

This commit is contained in:
Christian P. MOMON 2018-06-04 14:28:06 +02:00
parent 4eb8aa4c83
commit 3cdc93d17e
3 changed files with 29 additions and 17 deletions

View file

@ -32,15 +32,18 @@ public class TagAttributes extends HashMap<String, String>
private static final long serialVersionUID = 2802739066295665336L; private static final long serialVersionUID = 2802739066295665336L;
/** /**
* *
*/ */
public TagAttributes() public TagAttributes()
{ {
super(); super();
} }
/** /**
* Useful for the merge attributes. * Instantiates a new tag attributes. Useful for the merge of attributes.
*
* @param attributes
* the attributes
*/ */
public TagAttributes(final TagAttributes attributes) public TagAttributes(final TagAttributes attributes)
{ {
@ -48,9 +51,12 @@ public class TagAttributes extends HashMap<String, String>
} }
/** /**
* Add a value to an existing value. This is useful to the 'style' * Add a value to an existing value. This is useful to the 'style' attribute.
* attribute.
* *
* @param label
* the label
* @param value
* the value
*/ */
public void appendAttribute(final String label, final String value) public void appendAttribute(final String label, final String value)
{ {
@ -65,8 +71,12 @@ public class TagAttributes extends HashMap<String, String>
} }
/** /**
* * Gets the attribute.
*/ *
* @param label
* the label
* @return the attribute
*/
public String getAttribute(final String label) public String getAttribute(final String label)
{ {
String result; String result;
@ -85,11 +95,15 @@ public class TagAttributes extends HashMap<String, String>
} }
/** /**
* * Sets the attribute.
*/ *
* @param label
* the label
* @param value
* the value
*/
public void setAttribute(final String label, final String value) public void setAttribute(final String label, final String value)
{ {
this.put(label, value); this.put(label, value);
} }
} }

View file

@ -307,13 +307,13 @@ public class Page extends TagDataManager
/** /**
* Include page. * Include page.
* *
* @param id * @param id
* the id * the id
* @param source * @param source
* the source * the source
* @throws throws * @throws XidynException
* XidynException the exception * the xidyn exception
*/ */
public void includePage(final String id, final URL source) throws XidynException public void includePage(final String id, final URL source) throws XidynException
{ {

View file

@ -199,10 +199,8 @@ public class URLPresenter extends StringPresenter
return result; return result;
} }
/** /* (non-Javadoc)
* {@inheritDoc} * @see fr.devinsy.xidyn.presenters.StringPresenter#isOutdated()
*
* @throws IOException
*/ */
@Override @Override
public boolean isOutdated() throws XidynException public boolean isOutdated() throws XidynException