Browse Source

Fix some javadoc.

Change-Id: I001baec8f9a55df189d845e36cc62b669f06c921
Reviewed-on: http://gerrit.dmdirc.com/3740
Automatic-Compile: DMDirc Build Manager
Reviewed-by: Chris Smith <chris@dmdirc.com>
changes/40/3740/2
Greg Holmes 9 years ago
parent
commit
f0dee4bd04

+ 0
- 1
src/com/dmdirc/addons/scriptplugin/ScriptEngineWrapper.java View File

@@ -61,7 +61,6 @@ public class ScriptEngineWrapper {
61 61
      * @param eventBus            The event bus to post errors to
62 62
      * @param filename            Filename of script
63 63
      *
64
-     * @throws java.io.FileNotFoundException If file is not found
65 64
      * @throws javax.script.ScriptException  If there was an error during creation
66 65
      */
67 66
     protected ScriptEngineWrapper(final ScriptEngineManager scriptEngineManager,

+ 0
- 2
src/com/dmdirc/addons/serverlists/ServerList.java View File

@@ -104,8 +104,6 @@ public class ServerList implements ConfigProviderListener {
104 104
      * group to an identity.
105 105
      *
106 106
      * @param group The group to be added
107
-     *
108
-     * @throws IOException if the new identity cannot be written
109 107
      */
110 108
     public void addServerGroup(final ServerGroup group) {
111 109
         final ServerGroupWriter writer = new ServerGroupWriter(

+ 2
- 1
src/com/dmdirc/addons/ui_swing/UIUtilities.java View File

@@ -88,7 +88,8 @@ public final class UIUtilities {
88 88
     /**
89 89
      * Adds an undo manager and associated key bindings to the specified text component.
90 90
      *
91
-     * @param component component Text component to add an undo manager to
91
+     * @param eventBus  The event bus to post errors to
92
+     * @param component The text component to add an undo manager to
92 93
      */
93 94
     public static void addUndoManager(final EventBus eventBus, final JTextComponent component) {
94 95
         final UndoManager undoManager = new UndoManager();

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

@@ -49,6 +49,7 @@ public class FontPicker extends JComboBox<Object> {
49 49
     /**
50 50
      * Creates a new Font picker for the specified font family.
51 51
      *
52
+     * @param eventBus   The event bus to post errors to
52 53
      * @param fontFamily Font family
53 54
      */
54 55
     public FontPicker(final EventBus eventBus, final String fontFamily) {

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

@@ -80,6 +80,7 @@ public abstract class AddonPanel extends JPanel implements AddonToggleListener,
80 80
      *
81 81
      * @param parentWindow  Parent window
82 82
      * @param workerFactory The factory to use to produce data loader workers.
83
+     * @param eventBus      The event bus to post errors to.
83 84
      */
84 85
     public AddonPanel(final Window parentWindow, final DataLoaderWorkerFactory workerFactory,
85 86
             final EventBus eventBus) {

+ 1
- 0
src/com/dmdirc/addons/ui_swing/dialogs/channelsetting/ChannelSettingsDialog.java View File

@@ -103,6 +103,7 @@ public class ChannelSettingsDialog extends StandardDialog implements ActionListe
103 103
      * @param parentWindow       Parent window
104 104
      * @param clipboard          Clipboard to copy and paste from
105 105
      * @param commandController  The controller to use to retrieve command information.
106
+     * @param eventBus           The event bus to post errors to.
106 107
      */
107 108
     public ChannelSettingsDialog(
108 109
             final IdentityFactory identityFactory,

+ 1
- 0
src/com/dmdirc/addons/ui_swing/dialogs/prefs/CategoryLabel.java View File

@@ -53,6 +53,7 @@ public class CategoryLabel extends JLabel {
53 53
      * Creates a new category label.
54 54
      *
55 55
      * @param iconManager Icon manager
56
+     * @param eventBus    The event bus to post errors to
56 57
      * @param parentList  Parent list
57 58
      * @param category    Parent category
58 59
      * @param numCats     Number of categories shown

Loading…
Cancel
Save