Fixed Javadoc.
This commit is contained in:
parent
4eb8aa4c83
commit
3cdc93d17e
3 changed files with 29 additions and 17 deletions
|
@ -32,15 +32,18 @@ public class TagAttributes extends HashMap<String, String>
|
|||
private static final long serialVersionUID = 2802739066295665336L;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
*
|
||||
*/
|
||||
public TagAttributes()
|
||||
{
|
||||
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)
|
||||
{
|
||||
|
@ -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,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)
|
||||
{
|
||||
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)
|
||||
{
|
||||
this.put(label, value);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -307,13 +307,13 @@ public class Page extends TagDataManager
|
|||
|
||||
/**
|
||||
* Include page.
|
||||
*
|
||||
*
|
||||
* @param id
|
||||
* 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
|
||||
{
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue