From e423be0245c5c8978443bac0889611ba47e71c24 Mon Sep 17 00:00:00 2001 From: saftan Date: Sun, 25 Dec 2022 15:42:25 +0100 Subject: [PATCH] Added javadoc annotations SSHelpHistory --- .../gui/help/util/SSHelpHistory.java | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/main/java/se/swedsoft/bookkeeping/gui/help/util/SSHelpHistory.java b/src/main/java/se/swedsoft/bookkeeping/gui/help/util/SSHelpHistory.java index 907134e..32d9462 100644 --- a/src/main/java/se/swedsoft/bookkeeping/gui/help/util/SSHelpHistory.java +++ b/src/main/java/se/swedsoft/bookkeeping/gui/help/util/SSHelpHistory.java @@ -29,7 +29,7 @@ public class SSHelpHistory { /** * - * @param pViewer + * @param pViewer JHelpContentViewer */ public SSHelpHistory(JHelpContentViewer pViewer) { iViewer = pViewer; @@ -47,7 +47,7 @@ public class SSHelpHistory { /** * - * @param iListener + * @param iListener ActionListener */ public void addHistoryListener(ActionListener iListener) { iListeners.add(iListener); @@ -66,7 +66,7 @@ public class SSHelpHistory { /** * - * @param pEvent + * @param pEvent HelpModelEvent */ private void addHistoryEvent(HelpModelEvent pEvent) { if (iUpdating) { @@ -84,7 +84,7 @@ public class SSHelpHistory { /** * - * @return + * @return boolean */ public boolean hasNext() { return getNext() != null; @@ -92,7 +92,7 @@ public class SSHelpHistory { /** * - * @return + * @return boolean */ public boolean hasPrevious() { return getPrevious() != null; @@ -140,7 +140,7 @@ public class SSHelpHistory { /** * - * @param pUpdating + * @param pUpdating boolean */ private void setUpdating(boolean pUpdating) { iUpdating = pUpdating; @@ -148,7 +148,7 @@ public class SSHelpHistory { /** * - * @return + * @return HelpModelEvent|null */ private HelpModelEvent getCurrent() { int theIndex = iIndex - 1; @@ -161,7 +161,7 @@ public class SSHelpHistory { /** * - * @return + * @return HelpModelEvent|null */ private HelpModelEvent getNext() { int theIndex = iIndex; @@ -174,7 +174,7 @@ public class SSHelpHistory { /** * - * @return + * @return HelpModelEvent|null */ private HelpModelEvent getPrevious() { int theIndex = iIndex - 2;