Browse Source

Javadoc fixes.

Change-Id: I18440900a2991e52e3ce8bdf8d9d85f19c982bac
Reviewed-on: http://gerrit.dmdirc.com/3778
Automatic-Compile: DMDirc Build Manager
Reviewed-by: Chris Smith <chris@dmdirc.com>
changes/78/3778/2
Greg Holmes 9 years ago
parent
commit
7a7cdff953

+ 1
- 0
src/com/dmdirc/addons/ui_swing/SwingManager.java View File

@@ -105,6 +105,7 @@ public class SwingManager {
105 105
      * @param urlDialogFactory        Factory to use to create URL dialogs.
106 106
      * @param linkHandler             The handler to use when users click links.
107 107
      * @param eventBus                The bus to listen on for events.
108
+     * @param swingEventBus           The swing event bus to listen on for swing events.
108 109
      * @param treeProvider            Provider to use for tree-based frame managers.
109 110
      * @param buttonProvider          Provider to use for button-based frame managers.
110 111
      * @param swingWindowManager      Swing window manager

+ 1
- 0
src/com/dmdirc/addons/ui_swing/components/MDIBar.java View File

@@ -77,6 +77,7 @@ public class MDIBar extends JPanel implements SelectionListener, ActionListener,
77 77
      * @param iconManager        The manager to use to retrieve icons.
78 78
      * @param domain             The domain to read settings from under.
79 79
      * @param activeFrameManager Active frame manager.
80
+     * @param eventBus           The event bus to listen to events on.
80 81
      */
81 82
     @Inject
82 83
     public MDIBar(

+ 2
- 0
src/com/dmdirc/addons/ui_swing/components/statusbar/MessageLabel.java View File

@@ -160,6 +160,8 @@ public class MessageLabel extends JPanel implements StatusBarComponent,
160 160
 
161 161
     /**
162 162
      * Removes the message from the status bar.
163
+     *
164
+     * @param event The message clear event to handle
163 165
      */
164 166
     @Handler
165 167
     public void clearMessage(final StatusBarMessageClearEvent event) {

+ 4
- 3
src/com/dmdirc/addons/ui_swing/framemanager/buttonbar/ButtonBar.java View File

@@ -120,10 +120,11 @@ public final class ButtonBar implements FrameManager, ActionListener,
120 120
     /**
121 121
      * Creates a new instance of ButtonBar.
122 122
      *
123
-     * @param windowFactory     The factory to use to retrieve window information.
124
-     * @param windowManager     The window manager to use to read window state.
125
-     * @param globalConfig      Global configuration to read settings from.
123
+     * @param windowFactory      The factory to use to retrieve window information.
124
+     * @param windowManager      The window manager to use to read window state.
125
+     * @param globalConfig       Global configuration to read settings from.
126 126
      * @param activeFrameManager The active window manager
127
+     * @param eventBus           The event bus to subscribe to events on
127 128
      */
128 129
     @Inject
129 130
     public ButtonBar(

Loading…
Cancel
Save