summaryrefslogtreecommitdiff
path: root/wizards
diff options
context:
space:
mode:
authorrbuj <robert.buj@gmail.com>2014-09-01 17:25:47 +0200
committerThomas Arnhold <thomas@arnhold.org>2014-09-02 02:05:36 -0500
commit219ee12ffa5982b3ce4c6889193e197640e15756 (patch)
treeb5aec834d1de6e1006658b523db8677cac8862f7 /wizards
parent03276df2ae74d94939b03503074be6192aa4c791 (diff)
wizards: fix javadoc error: unknown tag: list
Change-Id: I293b4fc2c2e0ff4fd591389419f36f04e87c59a1 Reviewed-on: https://gerrit.libreoffice.org/11235 Reviewed-by: Thomas Arnhold <thomas@arnhold.org> Tested-by: Thomas Arnhold <thomas@arnhold.org>
Diffstat (limited to 'wizards')
-rw-r--r--wizards/com/sun/star/wizards/ui/event/AbstractListener.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/wizards/com/sun/star/wizards/ui/event/AbstractListener.java b/wizards/com/sun/star/wizards/ui/event/AbstractListener.java
index 0a2058379ddf..690d51f4087b 100644
--- a/wizards/com/sun/star/wizards/ui/event/AbstractListener.java
+++ b/wizards/com/sun/star/wizards/ui/event/AbstractListener.java
@@ -30,13 +30,13 @@ import java.util.HashMap;
* This class is a base class for listener classes.
* It uses a hashtable to map between a ComponentName, EventName and a MethodInvokation Object.
* To use this class do the following:<br/>
- * <list>
+ * <ul>
* <li>Write a subclass which implements the needed Listener(s).</li>
* in the even methods, use invoke(...).
* <li>When instanciating the component, register the subclass as the event listener.</li>
* <li>Write the methods which should be performed when the event occurs.</li>
* <li>call the "add" method, to define a component-event-action mapping.</li>
- * </list>
+ * </ul>
*/
public class AbstractListener
{