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

@ -40,7 +40,10 @@ public class TagAttributes extends HashMap<String, String>
}
/**
* 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)
{
@ -48,9 +51,12 @@ public class TagAttributes extends HashMap<String, String>
}
/**
* Add a value to an existing value. This is useful to the 'style'
* attribute.
* Add a value to an existing value. This is useful to the 'style' attribute.
*
* @param label
* the label
* @param value
* the value
*/
public void appendAttribute(final String label, final String value)
{
@ -65,7 +71,11 @@ public class TagAttributes extends HashMap<String, String>
}
/**
* Gets the attribute.
*
* @param label
* the label
* @return the attribute
*/
public String getAttribute(final String label)
{
@ -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)
{
this.put(label, value);
}
}

View file

@ -312,8 +312,8 @@ public class Page extends TagDataManager
* the id
* @param source
* the source
* @throws throws
* XidynException the exception
* @throws XidynException
* the xidyn exception
*/
public void includePage(final String id, final URL source) throws XidynException
{

View file

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